Skip to content

Commit 4b674ca

Browse files
committed
add more details around installing on virtualenv or conda environments
1 parent 44b47dc commit 4b674ca

File tree

1 file changed

+17
-2
lines changed

1 file changed

+17
-2
lines changed

CONTRIBUTING.md

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,29 @@ git clone https://github.com/pyscript/pyscript.git
1414
pip install --upgrade pip
1515
```
1616

17-
Make a virtualenv and activate it:
17+
Create a local enviroment with your enviroment manager of choice.
18+
19+
### Virtualenv
20+
21+
In case you choose Virtualenv, make a virtualenv and activate it using the following commands:
1822

1923
```shell
2024
python -m venv .venv
2125
source .venv/bin/activate
2226
```
2327

24-
Install your local enviroment dependencies
28+
### Conda
29+
30+
In case you choose to use conda, use the following commands:
31+
32+
```shell
33+
conda create -n pyscript-cli python
34+
conda activate pyscript-cli
35+
```
36+
37+
### Installation
38+
39+
Now that you have your environment set up and activated, install your local enviroment dependencies
2540

2641
```shell
2742
pip install -e ".[dev]"

0 commit comments

Comments
 (0)