With the help from python Spyder not importing numpy I am trying to run this code from Spyder but it is not working though I have installed Numpy via the command "conda install numpy"
import numpy as np
a = np.array([[1,0,0],
[0,1,0],
[0,0,1]])
print(a)
The output in the console in "No module named numpy" Can anyone please help me?
Thanks in advance.