Anaconda Python – how to reinstall 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
Anaconda Python – how to reinstall NumPy
Related posts