admin管理员组文章数量:1291799
I created a new conda environment using the command conda create --name <my-env>
and then installed some python packages using the following command
conda install -n <my-env> numpy pandas matplotlib seaborn
. Finally I activated my environment using the command conda activate <my-env>
and fired up Jupyter Notebook and started a new notebook. Kernel used here is Python 3. All packaged except seaborn
are imported without any error. I get the following error for importing seaborn
package.
---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[4], line 1
----> 1 import seaborn as sns
ModuleNotFoundError: No module named 'seaborn'
I have searched related questions on this forum, but can't find the answers. Edit : I am on Windows
Thanks
本文标签: condaModuleNotFoundError for seaborn package inside JupyterStack Overflow
版权声明:本文标题:conda - ModuleNotFoundError for seaborn package inside Jupyter - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1741541906a2384370.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论