File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,11 +33,20 @@ git clone git@github.com:jonathanrocher/ets_tutorial.git
3333
3434### EDM users (recommended)
3535First, download and install EDM from https://www.enthought.com/edm/ . Then,
36- open a ` Terminal ` /` Powershell ` /` Cmd Prompt ` / and navigate to the folder
37- where the repo was cloned. Enter the following command to create a
38- dedicated Python environment and install all dependencies in it:
36+ open a ` Terminal ` /` Powershell ` /` Cmd Prompt ` / and create a lighweight bootstrap environment to run the installation commands.
3937``` commandline
40- python ci build
38+ edm envs create bootstrap
39+ edm install --environment bootstrap click
40+ ```
41+ Next, enter the following commands to create a
42+ dedicated Python environment called ` ets_tutorial ` and install all dependencies in it:
43+ ``` commandline
44+ edm run -e bootstrap -- python ci build --environment ets_tutorial
45+ ```
46+ All application related ` python ` commands are assumed to run in this
47+ environment. You can activate the environment with:
48+ ``` commandline
49+ edm shell -e ets_tutorial
4150```
4251
4352### Conda users
You can’t perform that action at this time.
0 commit comments