You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I am trying to install the required modules to run the training.sh and I get an error when running
pip install -r requirements.txt
ERROR: Could not find a version that satisfies the requirement tensorflow-gpu==1.0.0 (from -r requirements.txt (line 5)) (from versions: none)
ERROR: No matching distribution found for tensorflow-gpu==1.0.0 (from -r requirements.txt (line 5))
Does anybody have the same issue ?
Bonus question : is it possible to use tensorflow instead of tensorflow-gpu ?
Thank you very much for your help !
The text was updated successfully, but these errors were encountered:
Hi,
I'm probably late but you need to do the following
Delete the virtual environment you created before
Delete the SqueezeSeg master that you cloned
Clone the SqueezeSeg master now
Create a new virtual environment using the given steps and activate it
pip install -U pip
pip install setuptools==44.0.0
Run these two commands after activating the virtual environment before doing anything else [This is because of the python2.7 coming to its end issue ]
Now pip install tensorflow
pip install tensorflow-gpu
Hello, I am trying to install the required modules to run the training.sh and I get an error when running
pip install -r requirements.txt
Does anybody have the same issue ?
Bonus question : is it possible to use tensorflow instead of tensorflow-gpu ?
Thank you very much for your help !
The text was updated successfully, but these errors were encountered: