Reputation: 1855
I am tried to do setup tensorflow in anaconda. I install Anaconda3-2019.03 which support pyhton3x. Now I learnt a lot and I could know that tensorflow doesn't works in Python 3.7.0 . That's why I update the Python version into Python 3.6.0 so that I can use tensorflow and I can install may be all packages but after all packages installation, I run a command in anaconda promots,
conda install python=3.6.0
but it shown an error and that is,
Preparing transaction: done
Verifying transaction: failed
Note: How can i solve this issue? Please help me. Advanced thanks.
Upvotes: 0
Views: 2337
Reputation: 71
YOu could create a new environment inside of conda dedicated for 3.6 with:
conda create --name py36 python=3.6
But then you also have to install tensorflow in there as well.
But Tensorflow works with Python 3.7.
Upvotes: 1