pkmital / CADL

ARCHIVED: Contains historical course materials/Homework materials for the FREE MOOC course on "Creative Applications of Deep Learning w/ Tensorflow" #CADL
https://www.kadenze.com/courses/creative-applications-of-deep-learning-with-tensorflow/info
Apache License 2.0
1.48k stars 732 forks source link

Docker build failing #103

Open lucianthorr opened 5 years ago

lucianthorr commented 5 years ago

Running docker build -t cadl . fails during the tensorflow install with " Could not find a version that satisfies the requirement tensorflow==1.5.0 (from -r /requirements.txt (line 16)) (from versions: ) No matching distribution found for tensorflow==1.5.0 (from -r /requirements.txt (line 16)) "

lucianthorr commented 5 years ago

For anyone running into this issue, I was able to build the container by changing the python version to 3.6 after stumbling across https://github.com/conda/conda/issues/7533

So change the docker file by changing the python version after updating conda: RUN conda update conda; conda update --all RUN conda install python=3.6

alanapost commented 5 years ago

Thanks for this!