Anaconda Python - how to reinstall NumPy Anaconda Python - how to reinstall NumPy numpy numpy

Anaconda Python - how to reinstall NumPy


How to reinstall a package depends on the conda version.

newer versions (>= 4.6):

conda install numpy --force-reinstall

older versions (< 4.6):

conda install numpy --force


You will most likely have to uninstall NumPy and reinstall it.

conda remove numpy

And then install it again:

conda install -c anaconda numpy


go to your project setting and change the interrupter(i had the same problem and it solved like this)