Closed j0r1 closed 6 years ago
The gcc
package has been replaced by the gcc_linux-64
package. Try removing gcc
and installing gcc_linux-64
. It may be necessary to reinstall libstdcxx-ng
to restore libstdc++ to its original version.
That indeed solves it, thanks!
I've just installed Anaconda 5.0.1 for Linux x64, Python 3.6. When I run
jupyter notebook
everythings works fine. After I install thegcc
package however (resolves to 4.8.5-7), jupyter no longer starts and I get the error:From a listing of libstdc++ libs:
It seems that after installing the gcc package,
libstdc++.so
now is a link to an older version without GLIBCXX_3.4.20.After removing the gcc package again, it still didn't work but it seemed that now the ImportError pointed to one of my system libraries, not one of anaconda. A file listing of the libstdc++ libs now only shows
i.e., the symbolic links no longer exist. After restoring the symbolic links, jupyter starts again without problems.