Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,21 +70,21 @@ This guide will walk you through the configuration of this environment (named `o

`conda config --add channels conda-forge`

3. Create the environment.
3. Clone the workshop git repo

`conda env create --file environment.yml`
`git clone https://github.com/gw-odw/odw.git`

4. Activate the environment.
4. Move into the directory with the workshop git repo

`conda activate odw-py312`
`cd odw`

5. Clone the workshop git repo
5. Create the environment.

`git clone https://github.com/gw-odw/odw.git`
`conda env create --file environment.yml`

6. Move into the directory with the workshop git repo
6. Activate the environment.

`cd odw`
`conda activate odw-py312`

7. Build a custom [jupyter kernel](https://ipython.readthedocs.io/en/stable/install/kernel_install.html) using the command

Expand Down
Loading