📅  最后修改于: 2023-12-03 14:44:20.358000             🧑  作者: Mango
当在部署 Heroku 上的 Django 应用程序时,你可能会遇到 "ModuleNotFoundError: No module named 'debug_toolbar'" 的错误消息。
这通常是因为在 Heroku 上没有安装 "debug_toolbar" 模块。
要解决这个问题,可以通过在 "requirements.txt" 文件中添加 "debug_toolbar" 来安装该模块:
# requirements.txt
django
...
debug_toolbar
然后,在 Heroku 上重新部署应用程序:
$ git add .
$ git commit -m "Added debug_toolbar to requirements.txt"
$ git push heroku master
这个问题应该就会解决了!
总结:在部署 Django 应用程序到 Heroku 上时,记得包含所有依赖项和必需的库,以避免出现 "ModuleNotFoundError" 的异常。