Forked from supriya-gdptl/UninstallTensorFlow.txt
Created
September 13, 2018 03:46
-
-
Save dscha09/c0b18bfb07465bd5bcf5d64507ae99de to your computer and use it in GitHub Desktop.
Steps to uninstall tensorflow
This file contains hidden or 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