欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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
相关标签: python学习笔记