Installing package not found in conda
Asked Answered
T

3

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?

Turfy answered 16/5, 2017 at 19:25 Comment(0)
M
35

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

It should work.

Monahan answered 17/5, 2017 at 9:51 Comment(0)
M
13
Ubuntu:/$ which pip
/home/superadmin/anaconda2/bin/pip
Ubuntu:/$ /home/superadmin/anaconda2/bin/pip install apache-beam

It worked...

Miserere answered 25/7, 2017 at 10:1 Comment(0)
T
10

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

Tentative answered 22/11, 2018 at 21:15 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.