我想在EC2 AWS ipython笔记本上将seaborn导入为sns。
但是我收到以下错误。请帮忙
import seaborn as sns
ImportError Traceback(最近一次调用最后一次) in() ----> 1将seaborn导入为sns
ImportError:没有名为seaborn的模块
答案 0 :(得分:1)
您可能首先要下载seaborn包。默认情况下,它不适用于python安装。
使用pip下载:
pip install seaborn
另外,您可以尝试安装anaconda
$ curl -O https://repo.continuum.io/archive/Anaconda3-4.3.1-Linux-x86_64.sh
$ chmod 777 Anaconda3-4.3.1-Linux-x86_64.sh
$ ./Anaconda3-4.3.1-Linux-x86_64.sh
... (Press enter/yes where ever required )
$ conda install seaborn