We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
when executing docker-compose up from my Macbook Pro, DockerFile would fail on step 26/35 for non satisfied libs for numpy=1.13.0 dep. (blas,mkl etc.)
docker-compose up
step 26/35
numpy=1.13.0
so I made some modifications to make it work: environment.yml
under channels section I added - https://conda.anaconda.org/conda-forge/ to be the last url.
channels
- https://conda.anaconda.org/conda-forge/
under dependencies add - blas on top of others. and removed - matplotlib since for some reason it freeazed the process.
dependencies
- blas
- matplotlib
Dockerfile
change Anaconda2*.sh file to latest Anaconda2*.sh`
Anaconda2*.sh
change: RUN conda env create -f /root/sac/environment.yml \ && conda env update to: RUN conda env create -n sac RUN conda env update RUN conda export -f /root/sac/environment.yml
RUN conda env create -f /root/sac/environment.yml \ && conda env update
RUN conda env create -n sac
RUN conda env update
RUN conda export -f /root/sac/environment.yml
I believe this will save someone's time in future and strongly suggest to test and commit those changes @haarnoja
The text was updated successfully, but these errors were encountered:
No branches or pull requests
when executing
docker-compose up
from my Macbook Pro, DockerFile would fail onstep 26/35
for non satisfied libs fornumpy=1.13.0
dep. (blas,mkl etc.)so I made some modifications to make it work:
environment.yml
under
channels
section I added- https://conda.anaconda.org/conda-forge/
to be the last url.under
dependencies
add- blas
on top of others. and removed- matplotlib
since for some reason it freeazed the process.Dockerfile
change
Anaconda2*.sh
file to latest Anaconda2*.sh`change:
RUN conda env create -f /root/sac/environment.yml \ && conda env update
to:
RUN conda env create -n sac
RUN conda env update
RUN conda export -f /root/sac/environment.yml
I believe this will save someone's time in future and strongly suggest to test and commit those changes @haarnoja
The text was updated successfully, but these errors were encountered: