Python Pandas - Missing required dependencies ['numpy'] 1

284    Asked by ranjan_6399 in Python , Asked on Apr 10, 2021

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!

Answered by Ranjana Admin

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

Your Answer

Interviews

Parent Categories