Linux下Python打包教程(PyInstaller)及常见问题解决
弄了两周,一堆办法都没有用,我混合了好几个办法弄好了。
目录
一、下载pyinstaller
1、【error13】权限不够
2、依赖库添加环境变量
二、用pyinstaller打包
1、bash:pyinstaller未找到命令
Ⅰ、 添加环境变量
Ⅱ、python -m直接调用
三 、运行可执行文件
一、下载pyinstaller
pip install pyinstaller
1、【error13】权限不够
找到需要添加权限的路径(一般后面会显示是哪个文件夹权限不够)结合了这两个改的https://blog.csdn.net/Hningning/article/details/107887020
https://blog.csdn.net/qq_41996454/article/details/109689314
sudo -i #进入root用户,方便,不然每次都要加sudo
cd 路径 #进入要修改的文件所在位置
chmod a+rwx filename #直接允许所有人所有权限,方便,具体看上面链接具体的
2、依赖库添加环境变量
The scripts pyiarchive _vieer, pyi-bindepend, py-gra_version, pyimakespec, pyiset version and pyinstalter are installed in ‘
作者:tennsai.