importerror: numpy.core.multiarray failed to import

ImportError “numpy.core.multiarray failed to import” occurs due to broken or incompatible NumPy installation. Fix by reinstalling NumPy, upgrading pip, checking Python compatibility, and using a clean virtual environment.
 
keep getting 'numpy.core.multiarray failed to import' when running my python script. already tried pip install --upgrade numpy. what am i missing?

hey, i've run into this one before. usually for me it's about having multiple python installs or virtual environments. are you making sure to use the python interpreter from the same environment where you pip installed numpy? sometimes the system just picks up the wrong one.
 
ImportError “numpy.core.multiarray failed to import” occurs due to broken or incompatible NumPy installation. Fix by reinstalling NumPy, upgrading pip, checking Python compatibility, and using a clean virtual environment.

thanks for the suggestions this gives me a good few things to try
 
Back
Top