I am having a problem with running my Python programs after installing a new package. The error message that I am getting states:
RuntimeError: The current Numpy installation ("[Location of file]") fails to pass a sanity check due to a bug in the windows runtime.See this issue for more information: [URL]
I use VS code.
pip install --upgrade numpy==1.19.3
The current numpy version is having some bugs.
You can use --upgrade
to upgrade and downgrade packages
This error occurs when using some Numpy versions. So uninstalling your current version and installing 1.19.3 will work.
sudo pip uninstall numpy
pip install --upgrade numpy==1.19.3
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With