In my requirements.txt
, I have the following:
tensorflow>=1.13.1,<2.0.0
When I run pip3 install -r requirements.txt
, I am getting the following error:
ERROR: Could not find a version that satisfies the requirement tensorflow<2.0.0,>=1.13.1 (from -r requirements.txt (line 2)) (from versions: none) ERROR: No matching distribution found for tensorflow<2.0.0,>=1.13.1 (from -r requirements.txt (line 2)) The command '/bin/sh -c pip3 install -r requirements.txt && pip3 install src/' returned a non-zero code: 1
How can I specify that I need tensorflow less than 2.0.0, but greater than 1.13.1?
I'm running this inside a docker build
command, so I'm starting with a fresh environment each time. I'm using the python:latest
base image to build off of.