Python 打包 windows 可执行的 exe 文件
程序员文章站
2022-06-04 15:16:32
...
需要安装 pyinstall 即可打包成 windows 可执行的 exe 文件
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple PyInstaller
我在安装时出现了下面的错误:
Downloading https://pypi.tuna.tsinghua.edu.cn/packages/9e/ed/fbdad7f5d8f794c901076b814b8e9f5ce31d32c0bc3b63ddd27b61db9530/pyinstaller-4.1.tar.gz (3.5 MB)
|████████████████████████████████| 3.5 MB 1.6 MB/s
Installing build dependencies ... done
Getting requirements to build wheel ... done
Preparing wheel metadata ... error
ERROR: Command errored out with exit status 1:
command: 'D:\Program Files\python3.8\python.exe' 'D:\Program Files\python3.8\lib\site-packages\pip-20.2.4-py3.8.egg\pip\_vendor\pep517\_in_process.py' prepare_metadata_for_build_wheel 'C:\Users\迅帮网~1\AppData\Local\Temp\tmp5r4t5sif'
cwd: C:\Users\auth\AppData\Local\Temp\pip-install-c0xpvew0\pyinstaller
Complete output (38 lines):
running dist_info
creating C:\Users\auth\AppData\Local\Temp\pip-modern-metadata-nesedid2\pyinstaller.egg-info
解决办法:
先安装 wheel,之后再安装 pyinstaller 就可以了
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple wheel
直接运行
pyinstaller -F 文件路径.py
推荐阅读
-
[C++]HelloWorld背后的故事!总结一下在我们运行exe可执行文件前究竟发生了什么!
-
python打包exe文件的问题总结及解决办法
-
js打开windows上的可执行文件示例_javascript技巧
-
Python实现学生管理系统并生成exe可执行文件详解流程
-
Windows下用py2exe将Python程序打包成exe程序的教程
-
Windows中使用wxPython和py2exe开发Python的GUI程序的实例教程
-
Python打包可执行文件的方法详解
-
Python打包文件夹的方法小结(zip,tar,tar.gz等)
-
Python打包可执行文件的方法详解
-
Python打包文件夹的方法小结(zip,tar,tar.gz等)