Skip to content
Snippets Groups Projects
Commit 9ab1464e authored by Christian Rohlfing's avatar Christian Rohlfing
Browse files

Changed conda to mamba (faster)

parent d48a3fd7
Branches master
No related tags found
No related merge requests found
Pipeline #1524712 failed
......@@ -53,21 +53,21 @@ To run the notebooks on your local machine, you may use [Anaconda](https://www.a
* It is highly recommended to run the notebooks in an isolated Anaconda environment. You can create a new environment called `jupyter-example-profile` from the provided `environment.yml` by running the following command in the Anaconda prompt
```bash
conda env create -f environment.yml
mamba env create -f environment.yml
```
This makes sure that all required packages are installed amd don't interfere with the packages in your base environment.
* Activate this environment with
```bash
conda activate jupyter-example-profile
mamba activate jupyter-example-profile
```
### Local Run
* Activate the environment with `conda activate jupyter-example-profile`.
* Activate the environment with `mamba activate jupyter-example-profile`.
* Run JupyterLab `jupyter lab`. In your browser, JupyterLab should start. You can then open `index.ipynb` for an overview over all notebooks.
* You can deactivate the environment with `conda deactivate`.
* You can deactivate the environment with `mamba deactivate`.
## Contact
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment