ModuleNotFoundError: No module named 'seaborn' in Python IDE ModuleNotFoundError: No module named 'seaborn' in Python IDE python-3.x python-3.x

ModuleNotFoundError: No module named 'seaborn' in Python IDE


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

python --versionpython -m pip install seaborn

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


If you're doing in jupyter notebook Try doing this:

!conda install -c anaconda seaborn -y