为什么在import seaborn的时候会显示No module named 'numpy.testing.nosetester'
时间: 2023-07-10 16:04:49 浏览: 108
使用Python 库 NumPy、Pandas 和 seaborn来分析泰坦尼克数据集.zip
这个问题通常出现在使用较老版本的 `numpy` 或 `seaborn` 模块时,因为 `seaborn` 模块需要使用 `numpy.testing.nosetester` 模块中的一些函数进行测试。
要解决这个问题,可以尝试升级 `numpy` 和 `seaborn` 模块到最新版本,或者手动安装 `numpy.testing.nosetester` 模块。可以使用以下命令来手动安装:
```
pip install nose
```
如果手动安装后仍然出现相同的错误,可以尝试卸载并重新安装 `numpy` 和 `seaborn` 模块,或者使用虚拟环境来隔离不同项目的依赖。
阅读全文