Home > Software design >  Unable to install tweepy on anaconda
Unable to install tweepy on anaconda

Time:01-04

Hi ive been trying to install Tweepy but it doea not install on my anaconda prompt this is the command I enter

''' conda install -c conda-forge tweepy'''

the message I get back is

'''[WinError 87] The parameter is incorrect ()'''

CodePudding user response:

You can use these commands too-

  1. conda install -c "conda-forge/label/cf201901" tweepy
  2. conda install -c "conda-forge/label/cf202003" tweepy

CodePudding user response:

Could you try running the command prompt as administrator and execute the conda command.

If that doesn't work, you might have to try running it on WSL/WSL2 in your Win machine.

CodePudding user response:

First at all you should run the command prompt as administrator and then execute and run the code..

if then also it does not work then u might have to run it on WSL/WSL2 in your windows machine..

You can use these commands too to install conda install -c"conda-forge/label/cf201901"tweepy or else use this. conda install -c"conda-forge/label/cf202003"tweepy

  • Related