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
It seams that missing dependency of python-dev, install python-dev and then try to install seaborn, if you are using Ubuntu:
sudo apt-get install python-dev -y pip install seaborn