27

I'm using python 3.6 as anaconda, and im trying to install python-twitter package, but there is no package compatible from conda manager. How can i download the package outside conda manager in order to use it later with jupyter notebook?

Alex T
  • 3,529
  • 12
  • 56
  • 105

3 Answers3

34

You can install pip in your conda env and then run pip install python-twitter.

It should work.

Adrien Blanquer
  • 2,041
  • 1
  • 19
  • 31
13
Ubuntu:/$ which pip
/home/superadmin/anaconda2/bin/pip
Ubuntu:/$ /home/superadmin/anaconda2/bin/pip install apache-beam

It worked...

gibbone
  • 2,300
  • 20
  • 20
vinsent paramanantham
  • 953
  • 3
  • 15
  • 34
8

If you prefer conda packages over pip where possible, check other channels first with:

conda install [--channel | -c] conda-forge

Search multiple channels:

conda search -c bioconda -c conda-forge

Add a channel to the default search (see docs for managing precedence order):

conda config --add channels conda-forge

Some of the popular channels are listed in Explanation of different conda channels

matt wilkie
  • 17,268
  • 24
  • 80
  • 115