Skip to content

Commit

Permalink
Merge pull request #263 from partha-ghosh/main
Browse files Browse the repository at this point in the history
added instructions to setup a conda environment
  • Loading branch information
mibaumgartner authored Jul 11, 2024
2 parents d41b5c0 + 56d0e43 commit b0504dc
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,31 @@ docker run --gpus all -v ${det_data}:/opt/data -v ${det_models}:/opt/models -it
Warning:
When running a training inside the container it is necessary to [increase the shared memory](https://stackoverflow.com/questions/30210362/how-to-increase-the-size-of-the-dev-shm-in-docker-container) (via --shm-size).

## Local
To create a working environment locally with conda, please run:
```
conda create --name nndet_venv python=3.8
conda activate nndet_venv
```

Now run the following commands to properly set it up:

```
git clone https://github.com/MIC-DKFZ/nnDetection.git
cd nnDetection
export CXX=$CONDA_PREFIX/bin/x86_64-conda_cos6-linux-gnu-c++
export CC=$CONDA_PREFIX/bin/x86_64-conda_cos6-linux-gnu-cc
conda install gxx_linux-64==9.3.0
conda install cuda -c nvidia/label/cuda-11.3.1
conda install pytorch==1.11.0 torchvision==0.12.0 torchaudio==0.11.0 cudatoolkit=11.3 -c pytorch
pip install -r requirements.txt \
&& pip install hydra-core --upgrade --pre \
&& pip install git+https://github.com/mibaumgartner/pytorch_model_summary.git
FORCE_CUDA=1 pip install -v -e .
```

## Source

Expand Down

0 comments on commit b0504dc

Please sign in to comment.