Pyinstaller打包可执行文件运行在linux容器中

1、安装说明

在linux安装pyinstaller

2、执行打包命令

$python_path/bin/pyinstaller -F test.py

3、调用dist目录下文件

./test

常见问题

Python library not found: libpython3.9m.so.1.0, libpython3.9m.so, libpython3.9.so.1.0, libpython3.9.so, libpython3.9mu.so.1.0

重新编译安装python即可

./configure –prefix=/usr/local/python3.9 –enable-shared –with-ssl make make install

你可能感兴趣的:(linux,运维,服务器)