When I try to import the twint
package (https://pypi.org/project/twint/) to Jupyter Notebook, I get an error message.
import twint
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-5772b804c290> in <module>
----> 1 import twint
ModuleNotFoundError: No module named 'twint'
But I know twint
is installed allright.
C:\Users\my_user>pip show twint
Name: twint
Version: 2.1.20
Summary: An advanced Twitter scraping & OSINT tool.
Home-page: https://github.com/twintproject/twint
Author: Cody Zacharias
Author-email: codyzacharias@pm.me
License: MIT
Location: c:\users\my_user\appdata\local\programs\python\python39\lib\site-packages
Requires: beautifulsoup4, pysocks, aiohttp, cchardet, googletransx, schedule, geopy, fake-
useragent, aiohttp-socks, elasticsearch, pandas, aiodns
Required-by:
I've looked at Python "ImportError: No module named twint" on Atom trying to use twint (Python Module), and I know I don't have two versions of python installed.
How do I move forward? I'd like to use this or a similar module, and not the Twitter API.
Thanks!