Skip to content

Commit 50c6c34

Browse files
committed
Improve installation instructions
1 parent 5673271 commit 50c6c34

1 file changed

Lines changed: 13 additions & 4 deletions

File tree

README.md

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,20 @@ git clone git@github.com:jonathanrocher/ets_tutorial.git
3333

3434
### EDM users (recommended)
3535
First, 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

0 commit comments

Comments
 (0)