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
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.