I'm trying to install twarc2
in my conda
environment (from here) :
conda install -c brown-data-science twarc
The above command runs fine, if I try it again I get All requested packages already installed.
However when I try to import the module in python:
>>> import twarc
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ModuleNotFoundError: No module named 'twarc'
What am I missing?