问题
I accidentally installed TensorFlow for Ubuntu/Linux 64-bit, GPU enabled. When I installed with Linux 64-bit CPU only, I am getting Segmentation fault while importing tensorflow from python console.
回答1:
First try python -v -c "import tensorflow"
to find out the place of the module file. Delete any tensorflow.so
or similar files.
Possible paths include $PYTHONPATH, prefix/lib/python2.7/site-packages
, exec-prefix/lib/python2.7/site-packages
and $HOME/lib/python2.7/site-packages
Run python -c "print sys.path"
to get a full list of paths.
回答2:
After removing all the files associated with tensorflow-gpu, go to the File-Settings-Project:PycharmProjects-Project Interpreter. Look for any package related to tensorflow-gpu and remove that.
回答3:
From the tensor flow website. https://www.tensorflow.org/install/install_linux
Do the following for uninstallation:
Uninstalling TensorFlow
To uninstall TensorFlow, simply remove the tree you created. For example:
$ rm -r targetDirectory
来源:https://stackoverflow.com/questions/36902457/how-to-uninstall-tensorflow-completely