Skip to content Skip to sidebar Skip to footer

Error Installing Tweepy On Windows

I am new to Python and tweepy. I have tried searching for an answer but haven't been able to get this working. I have Java 6 (can't change to 7, for another project), python 2.7 an

Solution 1:

another way is to use pip (if you have it installed). run

pip install tweepy

it should work just fine then.

Solution 2:

  1. download tweepy and unzip it in Desktop: https://github.com/tweepy/tweepy

2.rename it tweepy

  1. open command prompt and type "cd desktop" then "cd tweepy"

  2. type "python setup.py install" enter image description here

Solution 3:

You can also clone the git repo and do the following:

git clone git://github.com/tweepy/tweepy.git
cd tweepy
python setup.py install

Note: I assumed, you have added python to your PATH variable(if windows: https://www.pythoncentral.io/add-python-to-path-python-is-not-recognized-as-an-internal-or-external-command/)

Post a Comment for "Error Installing Tweepy On Windows"