如何处理安装成功但导入numpy时Python3.x出现的错误?
- 内容介绍
- 文章标签
- 相关推荐
本文共计384个文字,预计阅读时间需要2分钟。
问题描述:Windows环境下安装numpy时遇到错误
安装方法:pip3 install numpy
这种情况通常安装成功,但在导入numpy时会出现如下错误:
import numpyOn entry to DGEBAL parameter number 3 had an illegal valueOn entry to DGEHR
解决方法:请尝试以下步骤解决导入numpy时出现的错误。
1. 确保已安装最新版本的pip和setuptools。
2.卸载当前安装的numpy版本,并重新安装。
3.如果问题仍然存在,尝试使用虚拟环境安装numpy。
问题描述
windows错误安装方法:
pip3 install numpy
这种情况下虽然安装成功,但是在import numpy时会出现如下错误。
import numpy
** On entry to DGEBAL parameter number 3 had an illegal value
** On entry to DGEHRD parameter number 2 had an illegal value
** On entry to DORGHR DORGQR parameter number 2 had an illegal value
** On entry to DHSEQR parameter number 4 had an illegal value
...
RuntimeError: The current Numpy installation ('...\\numpy\\__init__.py') fails to pass a sanity check due to a bug in the windows runtime.
解决方法
查了很多资料,最后得到的结果是:
- numpy==1.19.3; platform_system == “Windows”
- numpy==1.19.4; platform_system == “linux”
windows只能安装1.19.3,直接使用pip3 install命令安装的是最新的1.19.4版本,因此在安装时需要指定版本: 先卸载已安装版本
pip3 uninstall numpy
安装1.19.3版本
pip3 install numpy==1.19.3
到此这篇关于解决python3.x安装numpy成功但import出错的问题的文章就介绍到这了,更多相关python3.x安装numpy成功内容请搜索易盾网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持易盾网络!
本文共计384个文字,预计阅读时间需要2分钟。
问题描述:Windows环境下安装numpy时遇到错误
安装方法:pip3 install numpy
这种情况通常安装成功,但在导入numpy时会出现如下错误:
import numpyOn entry to DGEBAL parameter number 3 had an illegal valueOn entry to DGEHR
解决方法:请尝试以下步骤解决导入numpy时出现的错误。
1. 确保已安装最新版本的pip和setuptools。
2.卸载当前安装的numpy版本,并重新安装。
3.如果问题仍然存在,尝试使用虚拟环境安装numpy。
问题描述
windows错误安装方法:
pip3 install numpy
这种情况下虽然安装成功,但是在import numpy时会出现如下错误。
import numpy
** On entry to DGEBAL parameter number 3 had an illegal value
** On entry to DGEHRD parameter number 2 had an illegal value
** On entry to DORGHR DORGQR parameter number 2 had an illegal value
** On entry to DHSEQR parameter number 4 had an illegal value
...
RuntimeError: The current Numpy installation ('...\\numpy\\__init__.py') fails to pass a sanity check due to a bug in the windows runtime.
解决方法
查了很多资料,最后得到的结果是:
- numpy==1.19.3; platform_system == “Windows”
- numpy==1.19.4; platform_system == “linux”
windows只能安装1.19.3,直接使用pip3 install命令安装的是最新的1.19.4版本,因此在安装时需要指定版本: 先卸载已安装版本
pip3 uninstall numpy
安装1.19.3版本
pip3 install numpy==1.19.3
到此这篇关于解决python3.x安装numpy成功但import出错的问题的文章就介绍到这了,更多相关python3.x安装numpy成功内容请搜索易盾网络以前的文章或继续浏览下面的相关文章希望大家以后多多支持易盾网络!

