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
14
14
pip install --upgrade pip
15
15
```
16
16
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:
18
22
19
23
``` shell
20
24
python -m venv .venv
21
25
source .venv/bin/activate
22
26
```
23
27
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
25
40
26
41
``` shell
27
42
pip install -e " .[dev]"
You can’t perform that action at this time.
0 commit comments