Importerror: No Module Named Tweepy
I installed pip in a virtual environment. It installed without errors. Here's what I get when I run sudo pip install tweepy after activating the venv: Requirement already satisfied
Solution 1:
Don't use sudo
to call pip when you're in a virtualenv: the root user won't have the virtualenv activated so the package is installed globally, as you can see from the paths. Just run pip install tweepy
.
Solution 2:
For installing the tweepy module just write pip install tweepy and it will work
Post a Comment for "Importerror: No Module Named Tweepy"