I am trying to run a python script and I am getting the following error;
import pandas as pd
File "/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/__init__.py", line 18, in <module>
raise ImportError("Missing required dependencies {0}".format(missing_dependencies))
ImportError: Missing required dependencies ['numpy']
both numpy and pandas were successfully installed using pip. How can I fix this?
import numpy?import numpynothing happens, It displays that error when I import with pandas as wellimport numpybeforeimport pandas. Somehow it started working though I still need to know what caused the error