Skylark0924/Rofunc

Can't find libpython3.8.so.1.0

hawkeex opened this issue · 3 comments

After installed from source, if we run the example directly, there will be the following error:

ImportError: libpython3.8.so.1.0: cannot open shared object file: No such file or directory, 

This is a system requirement. You can check file libpython3.8.so or libpython3.x.so

from

/lib/
/lib64/
/usr/lib/
/usr/lib64/

If it doesn't exist, you need to install it.

sudo apt-get install libpython3.x-dev

ibpython3.x-dev needs to be changed to your own python version, like ibpython3.8-dev

Very prompt reply!