当前位置: 代码迷 >> 综合 >> AttributeError:module“seaborn” has no attribute “lineplot” 解决
  详细解决方案

AttributeError:module“seaborn” has no attribute “lineplot” 解决

热度:58   发布时间:2024-02-04 23:30:35.0

文章目录

  • 前言
  • 正文

前言

绘制图的时候,学习了一个新库,可以遇到了bug,不过好在找到了解决方法

正文

具体问题就是版本不对,0.9才可以,可以通过命令查看一下版本:
pip freeze | grep seaborn

pip3 freeze | grep seaborn
具体可以通过conda
conda install -c anaconda seaborn=0.9.0
有些包在conda默认的channels中不包含,比如cudatoolkit-8.0,cudnn等,这时只需要在conda install指令后加上-c anaconda即可
或者 pip:
pip3 install seaborn==0.9.0
安装对应版本

  相关解决方案