When I am trying to install tweepy module for python on windows 7, I type in easy_install tweepy and it gives me the error of: ImportError: No module named pip.req
I already read the link below but I am a newbie and didnt understand it: No module named pip.req PLEASE HELP!!
You should look inside the file
setup.py
in your folder with downloadedtweepy
.There you could find the line:
setup.py
tries to importparse_requirements
function from modulereq
from packagepip
. But insidetweepy
folder there are nopip
package withreq.py
python module. Read about Python packages and modules here.So you need to do the steps from the answer https://stackoverflow.com/a/25193001/821093 to fix it.