Skip to content

Commit

Permalink
Merge pull request #362 from Vishu26/main
Browse files Browse the repository at this point in the history
Fix conda getting stuck at `solving environment`
  • Loading branch information
andrewilyas authored Jan 21, 2024
2 parents 6c3be0c + 22269c1 commit 77f1124
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
git \
ffmpeg

RUN conda create -n ffcv python=3.9 \
RUN conda update conda && \
conda create -n ffcv python=3.9 \
cupy \
pkg-config \
compilers \
Expand All @@ -29,4 +30,4 @@ RUN conda run -n ffcv pip install ffcv
# 1- build the Dockerfile (e.g. docker build -t ffcv .)
# 2- login to the docker container (e.g. docker run -it --gpus all ffcv bash)
# 3- cd ffcv/examples/cifar
# 4- bash train_cifar.sh
# 4- bash train_cifar.sh

0 comments on commit 77f1124

Please sign in to comment.