我想使用seaborn软件包创建一个catplot,我知道为了能够做到这一点,我需要最新版本的seaborn(0.9.0)。我使用以下方法安装了conda软件包:
conda install seaborn
但下载的版本为0.8.1。
因此,我使用pip安装了想要的版本:
pip3 install seaborn==0.9.0
,但是每当我运行代码时,我都会不断遇到相同的错误: AttributeError:模块“ seaborn”没有属性“ catplot” (该属性仅在最新版本中可用)。
有人可以帮忙吗?
答案 0 :(得分:11)
显然,conda尚未将seaborn 0.9.0集成到其默认通道中。您仍然可以尝试通过conda-forge
conda install -c conda-forge seaborn
您还可以在使用的conda环境中使用pip。
> activate
(base) > python -mpip install seaborn==0.9.0
答案 1 :(得分:2)
我的出生率是0.8.0。这对我有用。
sudo -H pip install seaborn==0.9.0
答案 2 :(得分:0)
如果要使用seaborn的开发功能,请尝试直接安装。
pip install git+https://github.com/mwaskom/seaborn.git#egg=seaborn
答案 3 :(得分:0)