赞
踩
需要重新装一下python,安装时的命令要加参数
一般的安装步骤:
cd /usr/src
wget https://www.python.org/ftp/python/3.11.2/Python-3.11.2.tgz
tar -zxvf Python-3.11.2.tgz
cd Python-3.11.2/
./configure
make
make install
在运行./configure时注意把这行命令改成:
./configure --prefix=/yourpath --enable-shared
/yourpath是原本的python路径,比如我的是
./configure --prefix=/usr/local/bin --enable-shared
重新安装后就可以顺利打包python程序了
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。