我使用this guide成功地在heroku上部署了一个django应用程序,heroku cli作为一个快照应用程序安装在我的系统上a-我在Dell xps 15上运行Fedora 32--除了我尝试在本地运行应用程序外,一切似乎都很好。
当我尝试在本地运行应用程序时,收到以下错误:
$ heroku open
▸ Error opening web browser.
▸ Error: Exited with code 4
▸
▸ Manually visit https://[myapp].herokuapp.com/ in your browser.
我尝试了不同的命令,但没有效果:
$ heroku open -a [myapp]
$ heroku open -r https://git.heroku.com/[myapp].git
当我用heroku local
运行它时,它运行起来没有任何问题,我查看了日志,但没有找到任何线索,也没有找到任何有用的信息。
我错过了什么?
2条答案
按热度按时间siv3szwd1#
尝试使用
export BROWSER=
设置~/.bashrc
中的浏览器9rnv2umw2#
如果有人使用Windows Subsystem for Linux,请将相应shell配置文件(例如
~/.zshrc
)中的BROWSER
环境变量设置为wslview
。