Error trying to import python modules using jupyter package on pycharm

Question:

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.

Asked By: TsuuN

||

Answers:

Run pip install numpy. pip comes with python. Use pip --version for checking installed pip version

Answered By: ANIK ISLAM SHOJIB
Categories: questions Tags: , ,
Answers are sorted by their score. The answer accepted by the question owner as the best is marked with
at the top-right corner.