10👍
✅
Updating the oauthlib version definitely works.
Just do this:
sudo pip install --upgrade oauthlib
7👍
you should uninstall tweepy, upgrade oauthlib and then reinstall tweepy as root:
sudo pip uninstall tweepy
sudo pip install oauthlib --upgrade
sudo apt-get install python-tweepy
Had the same problem and this worked fine for me.
👤Liam
- Django static files on heroku
- How can filter parent based on children in django
- 'QuerySet' object has no attribute ERROR, trying to get related data on ManyToMany fields
- Django and REST API to serve calculation-based requests
- Django: any way to avoid querying for request.user on every request?
Source:stackexchange.com