skip to Main Content

I want to use the twitter API. But in order to use that package named tweepy should be installed.

I tried installing it using the command conda install tweepy on the Anaconda Command Prompt.

But every time, the installation failed.

Can anyone please tell me how to install a package in Anaconda.

3

Answers


  1. Chosen as BEST ANSWER

    The following method works on Windows :

    Step 1 : Click on start

    Step 2 : Search and Open Anaconda Navigator

    Step 3 : In the Anaconda Navigator, Go to Evironments

    Step 4 : There is a drop down menu consisting of options : 1) Installed 2) Not Installed 3) Upgradable 4) Selected 5) All

    Step 5 : Click on "Not Installed"

    Step 6 : There is a block stating Search Packages, there enter the name of the package you want to install.

    Step 7 : Mark the name of the package to be installed in the search results, and click Apply

    Installation will start.

    Congratulations! You have successfully installed the package.


  2. I couldn’t get tweepy to install using Anaconda. I’m using the Anaconda distribution on a Mac. I tried pip install tweepy and it installed with no error messages.

    Login or Signup to reply.
  3. You can please try:

    conda install -c conda-forge tweepy 
    

    Source: tweepy

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search