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
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