I am trying to import numpy module in jupyter notebook but it is giving me error as --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) in ----> 1 import numpy as np ModuleNotFoundError: No module named 'numpy'
I have numpy installed in my system as when I import the same in IDLE/Pycharm, it gets imported without any error and I am able to use it. I tried
import sys
sys.path.append('/users/user/appdata/local/programs/python/python38/lib/site-packages')
import numpy as np
but it is showing error as --------------------------------------------------------------------------- ModuleNotFoundError Traceback (most recent call last) in ----> 1 import numpy as np ModuleNotFoundError: No module named 'numpy'