I am using Anaconda Python 3.
# Importing the libraries
import numpy as np
import matplotlib.pyplot as plt
import pandas as pd
but Python does not recognize the Numpy. I appreciate your help.
ModuleNotFoundError Traceback (most recent call last)
<ipython-input-1-4266db17a4ae> in <module>
1 # Importing the libraries
----> 2 import numpy as np
3 import matplotlib.pyplot as plt
4 import pandas as pd
ModuleNotFoundError: No module named 'numpy'