一、Linux环境打包python工程 将程序交付到生产环境(甲方),不想要环境维护者或甲方看到源代码,所以需要将源代码打包成可执行文件 https://pyinstaller.readthedocs.io/en/stable/requirem
一、Linux环境打包python工程
将程序交付到生产环境(甲方),不想要环境维护者或甲方看到源代码,所以需要将源代码打包成可执行文件
https://pyinstaller.readthedocs.io/en/stable/requirements.html
一)安装打包环境(PyInstaller)
1、安装依赖包
yum install -y python-setuptools python-dev build-essential2、下载并安装pyinstaller
在网址下载pyisntaller的包,地址:https://github.com/pyinstaller/pyinstaller/releases ,下载对应的tar包
cd ${BASE_DIR}#下载所需的release版本
tar -xvf pyinstaller-4.10.tar.gz
cd pyinstaller-4.10
pip3 install wheel
python3 setup.py install
如果中间没有报错的话,pyinstaller就安装完成了
验证pyinstaller
pyinstaller --version
4.10
3、打包python项目源码
PyInstaller 工具的命令语法如下:
pyinstaller 选项 Python 源文件(程序主文件)举例
## 示例代码]# cat main.py
print("hello,world!")
pyinstaller -F main.py
编译完成后,会将可执行文件保存到dist目录下
]# tree -L 1 distdist
└── main
执行可执行文件
]# ./dist/mainhello,world!
4、打包复杂环境,需修改配置文件然后重新编译
因为" pyinstaller -F 程序主文件.py ”这个打包的方法它只会打包当前目录下的所有py文件,而不会打包config和database两个文件夹,所以此时的可执行文件打包的并不完整,此时该怎么做
这种情况需要修改程序main.spec
# -*- mode: python ; coding: utf-8 -*-block_cipher = None
a = Analysis(['main.py'],
pathex=['/app/test'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
dict_database = Tree('/app/test/database',prefix='database')
a.datas += dict_database
dict_config = Tree('/app/test/config',prefix='config')
a.datas += dict_config
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='main',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=True )
重新编译
pyinstaller mian.spec