当前位置:   article > 正文

centos pyinstaller 打包问题 not found: libpython3.8.so.1.0,_centos升级python3缺少libpython3.so

centos升级python3缺少libpython3.so

问题 :centos中打包出现如下错误的时候,是因为缺少libpython3.8.so.1.0库,需要重新配置一些参数后编译python.

OSError: Python library not found: libpython3.8.so.1.0, libpython3.8mu.so.1.0, libpython3.8m.so.1.0, libpython3.8m.so, libpython3.8.so
    This means your Python installation does not come with proper shared library files.

解决步骤:

(1) 找到python源码解压后的路径

cd /home/ttt/Python-3.8.8 

(2) 配置参数

./configure --prefix=/usr/local/python3 --enable-shared --with-ssl 

(3) 重新安装 python

make &make install

 (4)查找库文件

find / -name libpython3.8.so.1.0

 查到对应的文件如下:  /home/ttt/Python-3.8.8/libpython3.8.so.1.0
  find: ‘/run/user/1000/doc’: 权限不够
   find: ‘/run/user/1000/gvfs’: 权限不够
 

(5)复制库文件到系统目录

cp /home/ttt/Python-3.8.8/libpython3.8.so.1.0 /usr/lib64/

 (6) 重新打包

pyinstaller -F xx.py 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/704501
推荐阅读
相关标签
  

闽ICP备14008679号