I'm new to using AppEngine and Python, and I can't figure out why I keep getting the error: ImportError: No module named tweepy
I put pip install tweepy==3.3.0
into my terminal, and it said it was successful. However, it still says it can't find the module.
Do I have to put it into a specific folder? If so, which one/how should I get to it?
Update: When I type pip list tweepy (3.3.0)
appears, but the importError is still there
Also, I don't know if this matters, but I'm using Atom and a mac. On my computer I think I have both versions of python (3.6 and 2.7)
Note: when i type in pip install tweepy==3.3.0
now, all it says is:
Requirement already satisfied: tweepy==3.3.0 in /Library/Python/2.7/site-packages
Requirement already satisfied: six>=1.7.3 in /Library/Python/2.7/site-packages (from tweepy==3.3.0)
Requirement already satisfied: requests-oauthlib>=0.4.1 in /Library/Python/2.7/site-packages (from tweepy==3.3.0)
Requirement already satisfied: requests>=2.4.3 in /Library/Python/2.7/site-packages (from tweepy==3.3.0)
Requirement already satisfied: oauthlib>=0.6.2 in /Library/Python/2.7/site-packages (from requests-oauthlib>=0.4.1->tweepy==3.3.0)
Requirement already satisfied: idna<2.6,>=2.5 in /Library/Python/2.7/site-packages (from requests>=2.4.3->tweepy==3.3.0)
Requirement already satisfied: certifi>=2017.4.17 in /Library/Python/2.7/site-packages (from requests>=2.4.3->tweepy==3.3.0)
Requirement already satisfied: urllib3<1.23,>=1.21.1 in /Library/Python/2.7/site-packages (from requests>=2.4.3->tweepy==3.3.0)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Library/Python/2.7/site-packages (from requests>=2.4.3->tweepy==3.3.0)
Update: I'm also trying to import Jinja and getting the import error