Python Forum

Full Version: Issue In Loading Textblob in jupyter
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi All,
I am downloading textblob using pip. The installation has been done successfully however jupyter does not show it as downloaded.
Below is the extract from pip using cmd:
[Requirement already satisfied: textblob in c:\users\51613014\appdata\local\programs\python\python37-32\lib\site-packages (0.15.3)
Requirement already satisfied: nltk>=3.1 in c:\users\51613014\appdata\local\programs\python\python37-32\lib\site-packages (from textblob) (3.4)]

also downloaded the
python -m textblob.download_corpora

[from textblob import TextBlob] shows this error:
ModuleNotFoundError: No module named 'textblob'

Please advice.

Regards, Shivi
It is always good practice use conda to install modules to use in Jupyter. For example textblog.

While in Jupyter one can always check the version (as in interactive terminal):

!python --version