在PyCharm上使用Jupyter包导入Python模块时出错。

huangapple go评论58阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年2月23日 23:44:24
  • 转载请务必保留本文链接:https://go.coder-hub.com/75547124.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定