Instructions from Supervisor I am very new to Python and BashCode. My supervisor wants me to run code from a GitHub repository. I have cloned the repository from GitHub. Now he asks to create a virtual environment with anaconda packages installed. I downloaded Miniconda and using the conda command (the command is on the attached image). Now, the next step is to execute the following: "pip install -r requirements.txt" in the repository. I tried, but I receive the error that is in title. I tried "pip install tensorflow==1.15" but that does not work. I am very confused on what to do. Thank you. I am using Windows terminal
Asked
Active
Viewed 210 times
0
-
Tensorflow only supports Python 3.5 to 3.8, what is your version of python? – tafer May 25 '22 at 23:05
-
Python 3.10.4. If this is the issue, I tried to create a virtual environment with python 3.7 and it still did not work. Do you recommend downloading an earlier version of python? – Jhair Colan May 25 '22 at 23:49
-
see that https://stackoverflow.com/questions/48720833/could-not-find-a-version-that-satisfies-the-requirement-tensorflow – tafer May 25 '22 at 23:51
-
and use pip3 instead pip – tafer May 26 '22 at 00:51
-
I don't see how the question would be related to bash, so I would remove the bash-tag. If you think different, you should at least - since you are on Windows - specify which implementation of version you are using (i.e. WSL, Cygwin, git-bash, ....) – user1934428 May 26 '22 at 06:40
1 Answers
0
To install TensorFlow 1.15, Python version should be 3.5-3.7. Python 3.10 only supports the latest tensorflow releases Tensorflow version = 2.8, 2.9
Please install the Python version 3.7 which supports almost all the tensorflow version (>Tensorflow 1.13).
You can refer to this tested build configuration details for more details.