Python Forum
Issue In Loading Textblob in jupyter - Printable Version

+- Python Forum (https://python-forum.io)
+-- Forum: Python Coding (https://python-forum.io/forum-7.html)
+--- Forum: General Coding Help (https://python-forum.io/forum-8.html)
+--- Thread: Issue In Loading Textblob in jupyter (/thread-17186.html)



Issue In Loading Textblob in jupyter - Shivi_Bhatia - Apr-01-2019

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


RE: Issue In Loading Textblob in jupyter - perfringo - Apr-01-2019

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