Installing package not found in conda

Alex T picture Alex T · May 16, 2017 · Viewed 32.5k times · Source

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?

Answer

Adrien Blanquer picture Adrien Blanquer · May 17, 2017

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

It should work.