For some reason, I want to use some previous version of tensorflow(\'tensorflow-**-.whl\', not source code on github) and where can I download the previous version and how c
in order to find out available previous versions all you need to do is either use :
pip search tensorflow-gpu
orpip search tensorflow
conda search tensorflow-gpu
orconda search tensorflow
and to install them even:
pip install tensorflow-gpu==1.15.0
orpip install tensorflow==1.15.0
conda install tensorflow-gpu==1.15.0
orconda install tensorflow==1.15.0
my experience conda search is much much cleaner and easier to find packages.