我尝试使用heroku local
来运行我的heroku应用程序,但每当我运行heroku local
时,我都会收到以下错误:
$heroku local
9:58:47 AM web.1 | /bin/sh: python: command not found
[DONE] Killing all processes with signal SIGINT
9:58:47 AM web.1 Exited with exit code null
我想知道问题是不是我安装了python3而不是python,因为当我运行which python3
时,我得到:
/Library/Frameworks/Python.framework/Versions/3.8/bin/python3
然而,当我运行which python
时,什么也得不到。
1条答案
按热度按时间f5emj3cl1#
问题是您的系统中没有名为
python
的命令。请将您的Procfile
改为python3
。