Created
December 5, 2017 14:07
-
-
Save supriya-gdptl/740852797b46052e82453c1eabf5a108 to your computer and use it in GitHub Desktop.
Steps to uninstall tensorflow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pip show tensorflow | |
pip uninstall tensorflow | |
# Tensorflow 1.4 works only with Python 3.5 | |
# to install downgrade Python 3.6 to Python 3.5 in Anaconda | |
conda install python=3.5 | |
# now install tensorflow 1.4 | |
sudo apt-get install python3-pip python3-dev | |
pip install tensorflow |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment