Jupyter No module named 'seaborn'
时间: 2023-10-25 18:07:22 浏览: 214
问题解决:安装的Python第三方库seaborn无法导入到jupyter notebook中
5星 · 资源好评率100%
To resolve the error "No module named 'seaborn'" in Jupyter Notebook, you to install the seaborn library. You can do this by opening a terminal or command prompt and running the following command:
```
pip install seaborn
```
Make sure you have a working internet connection as this command will download and install the seaborn library from the Python Package Index (PyPI). Once the installation is complete, you should be able to import seaborn in your Jupyter Notebook without any issues.
阅读全文