英文:
Error trying to import python modules using jupyter package on pycharm
问题
我正在使用Pycharm与Jupyter包,并突然间无法导入Python库中的任何模块(例如pandas、numpy等)。
我遇到的错误是:
> ---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[1], line 1
----> 1 import numpy as np
ModuleNotFoundError: No module named 'numpy'
我尝试过在Google上查找解决方案,但到目前为止都没有有效的解决方法。
英文:
I'm using Pycharm with the jupyter package and sundently I can't import any module from pythons library (panda,numpy,...).
The error that I get is,
> ---------------------------------------------------------------------------
ModuleNotFoundError Traceback (most recent call last)
Cell In[1], line 1
----> 1 import numpy as np
ModuleNotFoundError: No module named 'numpy'
I tried googling a solucion but nothing worked untill now.
答案1
得分: 0
运行 pip install numpy
。pip 与 Python 一同安装。使用 pip --version
来检查已安装的 pip 版本。
英文:
Run pip install numpy
. pip comes with python. Use pip --version
for checking installed pip version
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论