Skip to content

Commit c6a386d

Browse files
committed
update: Add instruction for anaconda env
1 parent 28297b5 commit c6a386d

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,14 @@ sudo apt install $(cat debian_deps.txt)
1212
```shell
1313
python3 -m venv .venv
1414
source .venv/bin/activate
15+
```
16+
alternatively, with Conda:
17+
```shell
18+
conda create -n rcs python=3.11 # Version ensures that python is installed to the environment
19+
conda activate rcs
20+
```
21+
Then, install the package:
22+
```shell
1523
pip install -r requirements_dev.txt
1624
pip config --site set global.no-build-isolation false
1725
```

0 commit comments

Comments
 (0)