pyinstaller在Win10 的安装与使用。

1.安装。

         首先, win+r,属于cmd进入命令行模式,输入pip install pyinstaller 即可,会自动安装在python安装目录下,也可输入where pyinstaller查看安装目录。

如果遇到错误:

PyInstaller cannot check for assembly dependencies.
Please install PyWin32 or pywin32-ctypes.

         先输入pip install pypiwin32,完成后继续输入pip install pywin32-ctypes,完成安装。

2.使用

        首先,进入你希望保存执行文件的目录,然后输入pyinstaller 命令和需要打包的文件的完全路径或相对路径即可,打包完成就会看到相应的文件。

D:\Program Files (x86)\python>pyinstaller D:\Pythonwork\wujiao.py   完全路径,文件保存在D:\Program Files (x86)\python

D:\Pythonwork>pyinstaller wujiao.py     相对路径,直接在py文件的目录下。

 

 

你可能感兴趣的:(python,pyinstaller,python第三方库,PyInstaller,cannot,check,for,a)