Heroku和Django 2.x ModuleNotFoundError:没有名为“ rest_auth”的模块

时间:2018-07-25 16:27:08

标签: django heroku django-rest-auth

我已经在Django 2.x本地安装了django-rest-auth,并且工作正常。 但是,当我部署到Heroku时,出现“ ModuleNotFoundError:没有名为'rest_auth'的模块”错误。

我确保requirements.txt正常(点子冻结)。 我还使用CLI和Heroku CL界面运行了命令:pip install django-rest-auth

有什么想法为什么不起作用?

1 个答案:

答案 0 :(得分:0)

最后找到了答案...我必须将模块ALSO添加到pipfile中,并确保采用如下语法: 在requirements.txt => django-rest-auth == 0.9.3 在Pipfile => django-rest-auth =“ == 0.9.3”