AttributeError: module ‘seaborn‘ has no attribute ‘histplot‘

2022-09-16 12:09:00 浏览数 (1)

问题描述:在用 seaborn 作图时报错:AttributeError: module ‘seaborn’ has no attribute ‘histplot’

这种情况一看就是 Python 库的版本问题,我用的 Anaconda Base 环境里的 seaborn 版本为 0.10.1。

解决方法:更新一下 seaborn 库,在 Anaconda Prompt 下输入 pip install -U seaborn 即可:

代码语言:javascript复制
pip install -U seaborn -i http://pypi.douban.com/simple --trusted-host pypi.douban.com

0 人点赞