error installing tweepy on windows

  • Last Update :
  • Techknowledgy :

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

pip install tweepy

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

Suggestion : 2

The easiest way to install the latest version from PyPI is by using pip:,To use the tweepy.asynchronous subpackage, be sure to install with the async extra:,You can also use Git to clone the repository from GitHub to install the latest development version:,Alternatively, install directly from the GitHub repository:

pip install tweepy
pip install tweepy[async]
git clone https: //github.com/tweepy/tweepy.git
   cd tweepy
pip install.
pip install git + https: //github.com/tweepy/tweepy.git

Suggestion : 3

another way is to use pip (if you have it installed). run,pip install unroll: python setup.py egg_info failed with error code 1,it should work just fine then.,Whats the difference between %s and %d in Python string formatting?

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

pip install tweepy

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

Suggestion : 4

How to install Tweepy on Windows and macOS / Linux,I strongly recommend installing Tweepy in a virtual environment and not using a global install for your user or root user.,User install note: In general, when installing Python packages, avoid using the sudo command to become root and install with elevated privileges. Since running sudo allows a package to run arbitrary and possibly malicious code at the root level, including deleting files or installing a virus. There are known cases of this for Python and NPM packagesIf you really want to install at the global level for your user and pip install PACKAGE gives an error, add --user flag. Just don't add sudo as a prefix.,Use deactivate command to revert to the global environment. Make sure you use the activate command above whenever you need to use tweepy in your project.

Navigate to your project root folder.

cd my - project

Here we use the builtin venv tool after the -m module flag, but you can use something else like Pipenv if you like.

python3 - m venv venv

Activate the virtual environment.

# Linux and macOS
source venv / bin / activate

# Windows
source venv\ Scripts\ activate

Now you can import Tweepy within the context of your project's virtual environment. A one-liner to test tweepy:

python - c 'import tweepy; print("It works!")

Suggestion : 5

Alternatively, install directly from the GitHub repository:,You can also use Git to clone the repository from GitHub to install the latest development version:,The easiest way to install the latest version from PyPI is by using pip:, pip install tweepy Copy PIP instructions

The easiest way to install the latest version from PyPI is by using pip:

pip install tweepy

To use the tweepy.asynchronous subpackage, be sure to install with the async extra:

pip install tweepy[async]

You can also use Git to clone the repository from GitHub to install the latest development version:

git clone https: //github.com/tweepy/tweepy.git
   cd tweepy
pip install.