Error importing Seaborn module in Python

后端 未结 15 1430
长情又很酷
长情又很酷 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条回答
  •  清歌不尽
    2020-12-31 01:07

    If your python version is 2.+, you can type below code to the terminal :

    pip install seaborn
    

    if python version is 3+, type below:

    pip3 install seaborn
    

提交回复
热议问题