提问人:vince 提问时间:11/13/2023 更新时间:11/13/2023 访问量:39
如何在macOS上将Python模块添加到PATH?
How to add Python Module to PATH on macOS?
问:
我已经下载了PyInstaller,使用pip3将python脚本转换为.exe文件,包括它们的依赖项。但是,当我尝试从我的终端使用 Pyinstaller 时,它不起作用。
我尝试运行: 但是出现以下错误: 我很确定要解决这个问题,我必须将 PyInstaller 添加到我的 PATH 中,我该怎么做?
ps:我使用的是macOS。pyinstaller --onefile test.py
-bash: pyinstaller: command not found
答: 暂无答案
评论
python -m
path+=INSTDIR
python -m PyInstaller test.py