Python Pandas - Missing required dependencies ['numpy'] 1
I've had this error when I try to import packages on anaconda :
ImportError: Missing required dependencies ['numpy']I have tried un-installing Anaconda and Python, switching to Python 2.7 but nothing works it's still the same error, here is the code I get :
How to resolve this error? help is really appreciated thanks!
You can fix this error “importerror: missing required dependencies ['numpy']” with the following install/uninstall sequence from the windows cmd line:
pip uninstall pandas -y
pip uninstall numpy -y
pip install pandas
pip install numpy