Skip to content

Commit

Permalink
replace conda with mamba
Browse files Browse the repository at this point in the history
  • Loading branch information
borauyar committed Dec 17, 2024
1 parent 0e4f202 commit acb45e1
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,14 @@

### Install

The installation process via pip/conda (assuming you have conda installed) should take a few minutes.
The installation process via pip/mamba (assuming you have mamba installed) should take a few minutes.

See `mamba` installation instructions [here.](https://mamba.readthedocs.io/en/latest/installation/mamba-installation.html)

```
# create an environment with python 3.11
conda create --name flexynesisenv python==3.11
conda activate flexynesisenv
mamba create --name flexynesisenv python==3.11
mamba activate flexynesisenv
# install latest version from pypi (https://pypi.org/project/flexynesis)
# make sure to use python3.11*
python -m pip install flexynesis --upgrade
Expand All @@ -27,7 +29,7 @@ https://bimsbstatic.mdc-berlin.de/akalin/buyar/flexynesis-benchmark-datasets/dat
tar -xzvf dataset1.tgz
conda activate flexynesisenv
mamba activate flexynesisenv
flexynesis --data_path dataset1 \
--model_class DirectPred \
Expand Down

0 comments on commit acb45e1

Please sign in to comment.