Heroku Python Django应用程序部署失败:没有名为'oauth2_provider'的模块

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Heroku Python Django应用程序部署失败:没有名为'oauth2_provider'的模块相关的知识,希望对你有一定的参考价值。

我跟随Django OAuth Toolkit tutorial。我已经在安装了Django OAuth Toolkit的本地服务器上成功运行了应用程序。

当我尝试部署到Heroku时,我在运行'$ python manage.py collectstatic --noinput'时遇到“ModuleNotFoundError:没有名为'oauth2_provider'的模块”错误。

我试图搜索Stack Overflow的类似问题,但无法找到。我在Stack Overflow上看到了很多关于collectstatic的问题,但我认为这不是我的问题。

我的回溯是这样的:

remote: -----> Python app detected
remote: -----> Installing requirements with pip
remote: 
remote: -----> $ python manage.py collectstatic --noinput
remote:        Traceback (most recent call last):
remote:          File "manage.py", line 10, in <module>
remote:            execute_from_command_line(sys.argv)
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 363, in execute_from_command_line
remote:            utility.execute()
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/core/management/__init__.py", line 337, in execute
remote:            django.setup()
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/__init__.py", line 27, in setup
remote:            apps.populate(settings.INSTALLED_APPS)
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/apps/registry.py", line 85, in populate
remote:            app_config = AppConfig.create(entry)
remote:          File "/app/.heroku/python/lib/python3.6/site-packages/django/apps/config.py", line 94, in create
remote:            module = import_module(entry)
remote:          File "/app/.heroku/python/lib/python3.6/importlib/__init__.py", line 126, in import_module
remote:            return _bootstrap._gcd_import(name[level:], package, level)
remote:          File "<frozen importlib._bootstrap>", line 978, in _gcd_import
remote:          File "<frozen importlib._bootstrap>", line 961, in _find_and_load
remote:          File "<frozen importlib._bootstrap>", line 948, in _find_and_load_unlocked
remote:        ModuleNotFoundError: No module named 'oauth2_provider'
remote: 
remote:  !     Error while running '$ python manage.py collectstatic --noinput'.
remote:        See traceback above for details.

我的settings.py已安装的应用程序如下:

INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    # Disable Django's own staticfiles handling in favour of WhiteNoise, for
    # greater consistency between gunicorn and `./manage.py runserver`. See:
    # http://whitenoise.evans.io/en/stable/django.html#using-whitenoise-in-development
    'whitenoise.runserver_nostatic',
    'django.contrib.staticfiles',
    'oauth2_provider',
    'corsheaders',
]

我正在使用Python 3.6.1,我的requirements.txt如下:

dj-database-url==0.4.1
Django==1.11.1
gunicorn==19.6.0
psycopg2==2.6.2
whitenoise==3.2
答案

你在requirements.txt文件中遗漏了这个包。所以在那里添加django-oauth-toolkit它应该工作

另一答案

尝试安装包“django-oauth-toolkit”,执行:

pip install -U django-oauth-toolkit

要么

pip3 install -U django-oauth-toolkit

另一个修复可能是升级你的python版本,我遇到python 2.7的问题,但不是python 3.5

以上是关于Heroku Python Django应用程序部署失败:没有名为'oauth2_provider'的模块的主要内容,如果未能解决你的问题,请参考以下文章

不使用 Django 的 Python 数据库(用于 Heroku)

在 Heroku 上部署时出现 Django 1.7 迁移错误

Heroku Python Django应用程序部署失败:没有名为'oauth2_provider'的模块

在 Heroku 上部署 React 和 Django

Django 迁移在 Heroku 中失败

我想在 Heroku 上部署一个 Django 应用程序,但出现错误