Tensorflow: why ‘pip uninstall tensorflow’ cannot find tensorflow

It could be because you didn’t install Tensorflow using pip, but using python setup.py develop instead as your link shows. pip uninstall is likely to fail if the package is installed using python setup.py install as they do not leave behind metadata to determine what files were installed. Therefore, you should be able to unistall Tensorflow with the option -u or –unistall of develop To answer for the second … Read more

how to find libstdc++.so.6: that contain GLIBCXX_3.4.19 for RHEL 6?

I work with a Linuxs server: (from wikipedia: Red Hat Enterprise Linux 6 was forked from Fedora 12 The kernel gcc version when trying to install Tensdorflow, I have some issue with a missing library: As you can see in my lib64/libstdc++.so.6 I don’t have GLIBCXX_3.4.19 I look with the following command: so my question where can I find the libstdc++-4.x.y-z.el6.x86_64 that contain GLIBCXX_3.4.19 and … Read more