【转】【Linux】安装pyinstaller
1.pip install pyinstaller
出现错误:
Could not find a version that satisfies the requirement pyinstaller(from version:) No matching distribution found for pyinstaller。
原因:被国外墙了,使用豆瓣源来下载。
pip install pyinstaller -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
或者
pip install pyinstaller -i https://pypi.douban.com/simple/
2.安装成功后,用pyinstaller来打包python代码:
pyinstaller main.py :即可在本目录生成文件dist
pyinstaller -F main.py :带"-F"是为了生成一个文件dist/main,速度会比上面的方式慢很多。
————————————————
版权声明:本文为CSDN博主「香道人」的原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/qq_37887537/article/details/79582612