I’m trying to import Seaborn on Jupyter Notebook, but facing the repeated issues.
- When i command
import Seaborn as sns
it replies as
ModuleNotFoundError: No module named 'Seaborn'
-
Then I tried to install Seaborn manually by commanding ‘!pip install --user seaborn’, it replies as
‘Successfully installed seaborn-0.12.2
WARNING: You are using pip version 21.1.3; however, version 23.0.1 is available.
You should consider upgrading via the ‘/nix/store/nki9ywqzbvz68vr75kn2r7g1q84f5agy-python3-3.9.6/bin/python3.9 -m pip install --upgrade pip’ command.’ -
After that I tried to import Seaborn again, but the same issues happened as point number 1.
-
So I upgraded the version by commaindg ‘!pip install --user --upgraded pip’, but got the message :
‘Successfully installed pip-23.0.1
WARNING: You are using pip version 21.1.3; however, version 23.0.1 is available.
You should consider upgrading via the ‘/nix/store/nki9ywqzbvz68vr75kn2r7g1q84f5agy-python3-3.9.6/bin/python3.9 -m pip install --upgrade pip’ command.’
I’m stuck here, I can’t import Seaborn on Jupyter Notebook.