share
Stack Overflowhow to install tensorflow 0.9 or 1.0.0 in 2018?
[-3] [1] Ihtesham Raza
[2018-06-25 18:59:31]
[ python python-3.x tensorflow windows-10 ]
[ https://stackoverflow.com/questions/51030242/how-to-install-tensorflow-0-9-or-1-0-0-in-2018 ]

Hy, im sorry if this question has already been asked, please point me to right direction, i've been searching for the solution. There is a project that i want to run and it needs tensorflow earlier version. I have read other questions as well but i can't find a good answer on how to get tensorflow 0.9 or 1.0.0? please help. My windows version is 10 and python 3.6.4 anaconda custom 64 bit

(1) You can access old releases from the official GitHub repo. It also seems like 1.0 is available in conda repos. - Eli Korvigo
1.0 is there, but im not sure how to install it. its zip file is available there - Ihtesham Raza
[+1] [2018-06-25 19:05:47] Engineero

I would create a virtual environment for this using conda create [1], and then install the required version of TensorFlow in that environment. With conda create you can do this in a single line! Create your environment with:

conda create --name tf100 python=3.4 tensorflow=1.0.0

Virtual environments basically allow you to have conflicting versions of tools installed, compartmentalizing them so that your system is only aware of the ones that are "in" the environment on which you are working.

Now, when you are ready to work on your old version of tensorflow, you just type activate tf100 in your command line. Then you just work as you usually would from there. To deactivate the environment (get back to your usual tensorflow setup), type deactivate in the command line.

If you need other packages to go along with tensorflow 1.0.0, you can install them using conda install [2] or pip install from the command line after activating your environment.

[1] https://conda.io/docs/user-guide/tasks/manage-environments.html
[2] https://conda.io/docs/user-guide/tasks/manage-pkgs.html#installing-packages

i tried that, but im still getting an error " conda create -n tf100 tensorflow=1.0.0 Fetching package metadata ............. PackageNotFoundError: Packages missing in current channels: - tensorflow 1.0.0* We have searched for the packages in the following channels: - repo.continuum.io/pkgs/main/win-64 - repo.continuum.io/pkgs/main/noarch - repo.continuum.io/pkgs/free/win-64 - repo.continuum.io/pkgs/free/noarch - repo.continuum.io/pkgs/r/win-64 - repo.continuum.io/pkgs/r/noarch" - Ihtesham Raza
There is no TF 1.0 for Windows 10 Python 3.6. You would need to downgrade your Python version (3.5 might suffice). - xdurch0
Updated my answer according to @xdurch0 's suggestion. You can also specify a different version of Python for your virtual environment. - Engineero
1