Heroku Python Django App Deployment Failure: No Module Named 'oauth2_provider'
I am following the Django OAuth Toolkit tutorial. I have the app running successfully on my local server with Django OAuth Toolkit installed. When I try to deploy to Heroku I ge
Solution 1:
You're missing this package in your requirements.txt
file. So add django-oauth-toolkit
there and it should work
Post a Comment for "Heroku Python Django App Deployment Failure: No Module Named 'oauth2_provider'"