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

[PyInstaller] 安装 PyInstaller

程序员文章站 2024-02-03 22:09:46
...

原创文章,欢迎转载。转载请注明:转载自 祥的博客

原文链接:https://blog.csdn.net/humanking7/article/details/80419628



环境

需要环境为:

  1. Windows 7 x64
  2. Python 3.6.1 x86

方法1. 用pip

1.1. 安装:

> pip install pyinstaller

1.2. 升级:

> pip install --upgrade pyinstaller

方法2. 下载安装

2.1. 下载:

下载安装包: http://www.pyinstaller.org/downloads.html

[PyInstaller] 安装 PyInstaller

2.2. 安装:

解压进入文件夹:

[PyInstaller] 安装 PyInstaller

安装

> python setup.py install

2.3. 错误缺少pywin32

[PyInstaller] 安装 PyInstaller

安装pywin32

方法1 pip安装,但是太慢了

> pip install pywin32

方法2 下载whl安装

下载地址:https://pypi.org/project/pywin32/#files

[PyInstaller] 安装 PyInstaller

cmd进入whl的位置,运行命令:

> pip install pywin32-223-cp36-cp36m-win32.whl

算是成功了?

[PyInstaller] 安装 PyInstaller

2.4. 安装pyinstaller成功

> python setup.py install

[PyInstaller] 安装 PyInstaller

测试pyinstaller

测试安装是否成功。

[PyInstaller] 安装 PyInstaller


[PyInstaller] 安装 PyInstaller

相关标签: pyinstaller