Skip to content

Commit

Permalink
Update tool-setup.md
Browse files Browse the repository at this point in the history
  • Loading branch information
matamadio committed Oct 13, 2023
1 parent cc59ab9 commit 2bd6b86
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions docs/tool-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@ In both cases, the script requires proper environment setup and input data to be
## Python environment

- Python 3 needs to be installed on your system. We suggest the latest [Anaconda](https://www.anaconda.com/download) distribution. Mamba is also encouraged.
- Create new `CCDR` environment according to your operating system: win.yml or linux.yml.
- Create new `CCDR-tools` environment according to your operating system: win.yml or linux.yml.
In Anaconda cmd prompt:
```
conda create --name CCDR --file <dir/win_env.yml>`
activate CCDR
```bash
conda create --name CCDR-tools --file <dir/win_env.yml>`
activate CCDR-tools
```

## Input data management
Expand Down Expand Up @@ -119,11 +119,11 @@ CACHE_DIR = ${DATA_DIR}/cache/
## Run Jupyter notebooks
- Be sure to activate the correct environment
```
activate CCDR
```bash
activate CCDR-tools
```
- Navigate to your working directory: `cd <Your work directory>`
```
```bash
cd C:\Dir\Workdir\
```
```{figure} images/cmd_prompt.png
Expand All @@ -133,7 +133,7 @@ CACHE_DIR = ${DATA_DIR}/cache/
Example of Anaconda cmd prompt
```
- Run the jupyter notebook.
```
```bash
jupyter notebook
```
The interface should pop up in your browser.
Expand Down

0 comments on commit 2bd6b86

Please sign in to comment.