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

GW1*_*732 2 python django heroku oauth-2.0

我正在关注Django OAuth 工具包教程。我在安装了 Django OAuth Toolkit 的本地服务器上成功运行了该应用程序。

当我尝试部署到 Heroku 时,我在运行“$ python manage.py collectstatic --noinput”时收到“ModuleNotFoundError: No module named '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.
Run Code Online (Sandbox Code Playgroud)

我的 settings.py Installed Apps 是这样的:

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',
]
Run Code Online (Sandbox Code Playgroud)

我使用的是 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
Run Code Online (Sandbox Code Playgroud)

mat*_*szb 5

您的requirements.txt文件中缺少此包。所以在django-oauth-toolkit那里添加它应该可以工作