Error importing Seaborn module in Python

后端 未结 15 1395
长情又很酷
长情又很酷 2020-12-31 00:24

I am trying to import seaborn into python (using 2.7) using the following code:

import matplotlib.pyplot as plt
import seaborn as sns
import pandas as pd
imp         


        
15条回答
  •  -上瘾入骨i
    2020-12-31 01:07

    I solved the same importing problem reinstalling to seaborn package with

    conda install -c https://conda.anaconda.org/anaconda seaborn

    by typing the command on a Windows command console Afterwards I could then import seaborn successfully when I launched the IPython Notebook via on Anaconda launcher.

    On the other failed way launching the IPython Notebook via Anaconda folder did not work for me.

提交回复
热议问题