将Python脚本打包成linux可执行文件

1、安装打包环境

#Python2:
pip install pyinstaller -i https://mirrors.aliyun.com/pypi/simple/
#Python3:
pip3 install pyinstaller -i https://mirrors.aliyun.com/pypi/simple/

2、打包py脚本

首先在打包之前检查一下我们的py文件是否可以正常执行,确认无误后进行打包

pyinstaller -F xxxxxxxxxxx.py
倒数第三句为生成的可执行文件

3、可执行文件存放路径

可在上图倒数第三句处查看
一般为当前目录的dist目录下

你可能感兴趣的:(将Python脚本打包成linux可执行文件)