A while ago, I created a virtual environment to work with the Python tensorflow
library on Bash on Ubuntu on Windows.
When using pip3 list
within that environment, I can see that version 1.1.0 of tensorflow is installed. In the mean time, tensorflow 1.5 has already been released.
I'm trying to update the tensorflow library to the new version with pip3 install tensorflow
. But I'm only getting the message "Requirement already satisfied".
How do I upload tensorflow (and my other libraries, for which the same thing happens) to the newest version in this environment?