我在一个项目中有一个文件(main.py),我想把它编译成一个单独的.exe文件。所以我通过pip在我的控制台上安装了pyinstaller(运行在项目目录中),它看起来已经安装成功了。但是当我在控制台中输入pyinstaller -w --onefile main.py
时,我得到了:Fatal Error: unable to process using '"C:\RepositoryOwnerLocal\venv\scripts\python.exe" "C:\Contributor\PycharmProjects\Project\venv\Scripts\pyinstaller.exe" -w --onefile main.py': The system cannot find the file specified.
个
我正在使用PyCharm 2022.2.1与PS控制台在Windows 10中.
注意:我从GitHub仓库中提取了这个项目,我知道pyinstaller要找的python.exe文件是仓库所有者本地的一个目录。我想主要的问题是我如何纠正这个目录。我已经检查了pyvenv.cfg文件,python目录是我本地的一个。
多谢了。
1条答案
按热度按时间gzszwxb41#
尝试通过pip卸载并重新安装pyinstaller。