2

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.enter image description here

3 Answers 3

2

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.

Sign up to request clarification or add additional context in comments.

4 Comments

do you mean python2.7/dist-packages/ ??
The easiest way is to search for any file with "tensorflow" in the name under your python installation folder. If you are not sure, run python -c "print sys.path" to see.
the directory site-packages is empty. :(
Please check the updated answer and this post
0

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.

Comments

0

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

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.