docker build fails for cuda 7.5
Closed this issue · 2 comments
rkosti commented
Hi @anibali ,
When I try to build the docker image for CUDA 7.5, I get the following error for step 18/28:
EnvironmentLocationNotFound: Not a conda environment: /home/user/miniconda/envs/py36/envs/pytorch-py36
The command '/bin/sh -c conda install -y --name pytorch-py36 -c soumith magma-cuda75 && conda clean -ya' returned a non-zero code: 1
Do you have a pre-built docker image somewhere stored or in the docker-hub? That should help avoid building from scratch.
anibali commented
43b18fb should fix the issue. Since PyTorch is not built against CUDA 7.5 after v0.3.0, the cuda-7.5 image is now fixed at that version.
I've also set up automated builds over at https://hub.docker.com/r/anibali/pytorch/. I'm not sure how long it will take for the images to go live, they are currently in the process of building.
rkosti commented
I've checked automated builds and built it on my system as well, it works smoothly now.
Thanks for the fix.