ModuleNotFoundError: No module named seaborn in Python IDE

ModuleNotFoundError: No module named seaborn in Python IDE

When dealing with version ambiguity, remember that pip is a python module. Once youre confident that python is the python installation that your IDE is running, run

python --version
python -m pip install seaborn

>pip3 may be pointing to an old or different python installation.

import pip
pip.main([install,seaborn])

From: https://stackoverflow.com/a/49391839

ModuleNotFoundError: No module named seaborn in Python IDE

If youre doing in jupyter notebook Try doing this:

!conda install -c anaconda seaborn -y

Leave a Reply

Your email address will not be published.