It checks the lib folder where my seaborn stuff is, but still error._.
Hi,
I have looked at other posts, but most seemed to be dealing with Jupyter notebooks, which I'm not. I was wondering how to get to use Seaborn in the basic Python IDE or in PyCharm. I read about filepath collisions stuff, but not too clear on that front.
I'm using Python 3.6 right now.
Thanks for any help!
Why is Seaborn not working in Jupyter or other data Visualization environments? The typical reason for this error is that the Seaborn package is simply not installed in your environment. Before starting your troubleshooting, you might want to use the command pip list to find out the packages that are installed.
First open Spyder and click Tools --> Open command prompt. You should see the Command Window appear in the bottom right of your screen. Here we install the Python package seaborn as an example. This will install seaborn on your machine.
import pip
pip.main(['install','seaborn'])
From: https://stackoverflow.com/a/49391839
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 --version
python -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
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With