File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -14,14 +14,29 @@ git clone https://github.com/pyscript/pyscript.git
1414pip 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
2024python -m venv .venv
2125source .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
2742pip install -e " .[dev]"
You can’t perform that action at this time.
0 commit comments