Python 进入.exe
Python into .exe
我想使用 pyinstaller
将我的 python 文件转换为 .exe
文件。我已经使用 pip install pyinstaller
安装了 pyinstaller,但是当我尝试使用 pyinstaller
时,我得到:
C:\Users\Varnith\Desktop\program>pyinstaller --onefile main.py
'pyinstaller' is not recognized as an internal or external command,
operable program or batch file.
问题是pyinstaller还没有添加到路径中。确保你安装正确。如果在 Windows 上,请尝试:
pip install pyinstaller
或
py -m pip install pyinstaller
否则,pip3
& python3
使用pip查找路径:
C:\Users\Hamid>pip install pyinstaller
Requirement already satisfied: pyinstaller in c:\python3.9\lib\site-packages (4.5.1)
然后将给定路径添加到 PATH。
(您还可以观看有关将 python 代码转换为可安装应用程序的视频:
https://www.youtube.com/watch?v=UZX5kH72Yx4 )
我想使用 pyinstaller
将我的 python 文件转换为 .exe
文件。我已经使用 pip install pyinstaller
安装了 pyinstaller,但是当我尝试使用 pyinstaller
时,我得到:
C:\Users\Varnith\Desktop\program>pyinstaller --onefile main.py
'pyinstaller' is not recognized as an internal or external command,
operable program or batch file.
问题是pyinstaller还没有添加到路径中。确保你安装正确。如果在 Windows 上,请尝试:
pip install pyinstaller
或
py -m pip install pyinstaller
否则,pip3
& python3
使用pip查找路径:
C:\Users\Hamid>pip install pyinstaller
Requirement already satisfied: pyinstaller in c:\python3.9\lib\site-packages (4.5.1)
然后将给定路径添加到 PATH。 (您还可以观看有关将 python 代码转换为可安装应用程序的视频: https://www.youtube.com/watch?v=UZX5kH72Yx4 )