How to install Tensorflow 2 as well as 1.15 both in a single OS
Dear all,
I have successfully installed tensorflow 2.0 gpu with all the basic mechanism and it is running very well but some codes that I need is compatible in tensorflow version 1.15.
Since, I am very new in tensorflow coding. So, I want to install tensorflow 1.15 version and 2.0 version both available in my OS.
Kindly Help me
.
Also suggest me about anaconda installation. will it be working with currently installed tensorflow.
2 answers ( 0 marked as helpful)
Hi Sumant,
First, Anaconda is a very good decision when you want to have two different versions of the same package installed.
Second, to achieve that, you will have to make 2 different virtual environments. One will host your TF 1, the other - TF 2.
You can see how to make these environments in this lecture here: https://learn.365datascience.com/courses/deep-learning-with-tensorflow-2-0/installing-the-tensorflow-package Best,
Iliya
thanks Iliya.