Message358117
On Ubuntu and other Linux distros you must run ldconfig any time you install or change a shared library. Otherwise the dynamic linker won't be able to locate the shared library.
I'm able to confirm that python3.8 does not work prior to calling, but works after calling ldconfig.
# ./configure --enable-shared
# make
# make install
# python3.8
python3.8: error while loading shared libraries: libpython3.8.so.1.0: cannot open shared object file: No such file or directory
# ldconfig
# python3.8
Python 3.8.0 (default, Dec 9 2019, 16:36:58)
[GCC 7.4.0] on linux
Type "help", "copyright", "credits" or "license" for more information.
>>> |
|
Date |
User |
Action |
Args |
2019-12-09 16:45:07 | christian.heimes | set | recipients:
+ christian.heimes, doko, buchs |
2019-12-09 16:45:07 | christian.heimes | set | messageid: <1575909907.15.0.161270617944.issue38987@roundup.psfhosted.org> |
2019-12-09 16:45:07 | christian.heimes | link | issue38987 messages |
2019-12-09 16:45:06 | christian.heimes | create | |
|