Maybe This is a simple question. While I run import seaborn as sns it returns me an error
No module named 'seaborn'
instead if run:
import sys
sys.path.append("/usr/local/lib/python3.7/site-packages")
import seaborn as sns
I have no error. Why ? because I have python 2.7 and 3 and I'm using Jupyter notebook on python3. I used pip install seaborn, pip3 install seaborn and also conda install seaborn
How can I use just import seaborn as sns without add the full path ? The strange thing is that the notebook is running using anaconda, but in it's list of packages seaborn is present.