Error Installing Tensorflow In Docker Image
I am trying to install tensorflow in docker image for my application. I have 3 files in the folder which i am using to build image.Dockerfile, index.py and requirements.txt Content
Solution 1:
I found the answer myself. I changed the line for tensorflow to RUN python3 -m pip install --upgrade https://storage.googleapis.com/tensorflow/mac/cpu/tensorflow-0.12.0-py3-none-any.whl
in Dockerfile and removed it from requirements.txt
Post a Comment for "Error Installing Tensorflow In Docker Image"