Pip install Python Packages in Jupyter Notebook : How to install Python Packages Jupyter Notebook

Опубликовано: 23 Март 2026
на канале: Shck Tchamna (Ca᷅mnà')
122,195
706

Sometimes, you won't be able to use some Python packages within Jupyter Notebook, even after installing the Python packages from Windows command line (cmd), the package may not communicate with Jupyter Notebook
USE the following command in Jupyter Notebook to solve that issue:

! pip install Package_name -- user

For example

! pip install textblob --user

DONT FORGET THE EXLAMATION MARK at beginning, and the -- user at the end.