1.numpy突然导入失败Importing the numpy C-extensions failed 2.ModuleNotNoundError:module named ‘torch‘的解决办法

问题一:

1.前言:电脑一直挂着pycharm 8天(休眠,有时候电脑会自动启动),再运行程序突然显示找不到numpy core(Importing the numpy C-extensions failed.)
2.程序报错大致如下:
UserWarning: mkl-service package failed to import, therefore Intel(R) MKL 
initialization ensuring its correct out-of-the box operation under condition
when Gnu OpenMP had already been loaded by Python process is not assured.
Please install mkl-service package, see http://github.com/IntelPython/mkl-service from . import _distributor_init

from numpy.core._multiarray_umath import (ImportError: DLL load failed: 找不到指定的模块。

Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.

riginal error was: DLL load failed: 找不到指定的模块。

3.我分别运行了2个程序报错具体如下:
3.1main.py的报错
G:\2E\anaconda\envs\pytorch\python.exe C:\Users\Dell\Desktop\PY!\111111\main.py 
G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\__init__.py:138: UserWarning: mkl-service package failed to import, therefore Intel(R) MKL initialization ensuring its correct out-of-the box operation under condition when Gnu OpenMP had already been loaded by Python process is not assured. Please install mkl-service package, see http://github.com/IntelPython/mkl-service
  from . import _distributor_init
Traceback (most recent call last):
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\core\__init__.py", line 22, in <module>
    from . import multiarray
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\core\multiarray.py", line 12, in <module>
    from . import overrides
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\core\overrides.py", line 7, in <module>
    from numpy.core._multiarray_umath import (
ImportError: DLL load failed: 找不到指定的模块。

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\Dell\Desktop\PY!\111111\main.py", line 1, in <module>
    from torch.utils.tensorboard import SummaryWriter
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\torch\__init__.py", line 613, in <module>
    _C._initExtension(manager_path())
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\torch\cuda\__init__.py", line 685, in <module>
    from . import amp
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\torch\cuda\amp\__init__.py", line 1, in <module>
    from .autocast_mode import autocast, custom_fwd, custom_bwd  # noqa: F401
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\torch\cuda\amp\autocast_mode.py", line 5, in <module>
    import numpy as np
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\__init__.py", line 140, in <module>
    from . import core
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\core\__init__.py", line 48, in <module>
    raise ImportError(msg)
ImportError: 

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.

We have compiled some common reasons and troubleshooting tips at:

    https://numpy.org/devdocs/user/troubleshooting-importerror.html

Please note and check the following:

  * The Python version is: Python3.6 from "G:\2E\anaconda\envs\pytorch\python.exe"
  * The NumPy version is: "1.19.2"

and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.

Original error was: DLL load failed: 找不到指定的模块。


进程已结束,退出代码1


3.2P12.PY.py的报错
G:\2E\anaconda\envs\pytorch\python.exe C:\Users\Dell\Desktop\PY!\111111\P12.PY.py 
G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\__init__.py:138: UserWarning: mkl-service package failed to import, therefore Intel(R) MKL initialization ensuring its correct out-of-the box operation under condition when Gnu OpenMP had already been loaded by Python process is not assured. Please install mkl-service package, see http://github.com/IntelPython/mkl-service
  from . import _distributor_init
Traceback (most recent call last):
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\core\__init__.py", line 22, in <module>
    from . import multiarray
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\core\multiarray.py", line 12, in <module>
    from . import overrides
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\core\overrides.py", line 7, in <module>
    from numpy.core._multiarray_umath import (
ImportError: DLL load failed: 找不到指定的模块。

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File "C:\Users\Dell\Desktop\PY!\111111\P12.PY.py", line 1, in <module>
    from torch.utils.tensorboard import SummaryWriter
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\torch\__init__.py", line 613, in <module>
    _C._initExtension(manager_path())
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\torch\cuda\__init__.py", line 685, in <module>
    from . import amp
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\torch\cuda\amp\__init__.py", line 1, in <module>
    from .autocast_mode import autocast, custom_fwd, custom_bwd  # noqa: F401
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\torch\cuda\amp\autocast_mode.py", line 5, in <module>
    import numpy as np
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\__init__.py", line 140, in <module>
    from . import core
  File "G:\2E\anaconda\envs\pytorch\lib\site-packages\numpy\core\__init__.py", line 48, in <module>
    raise ImportError(msg)
ImportError: 

IMPORTANT: PLEASE READ THIS FOR ADVICE ON HOW TO SOLVE THIS ISSUE!

Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.

We have compiled some common reasons and troubleshooting tips at:

    https://numpy.org/devdocs/user/troubleshooting-importerror.html

Please note and check the following:

  * The Python version is: Python3.6 from "G:\2E\anaconda\envs\pytorch\python.exe"
  * The NumPy version is: "1.19.2"

and make sure that they are the versions you expect.
Please carefully study the documentation linked above for further help.

Original error was: DLL load failed: 找不到指定的模块。


进程已结束,退出代码1

4.运行两段代码的共通之处是
Importing the numpy C-extensions failed. This error can happen for
many reasons, often due to issues with your setup or how NumPy was
installed.
5.问题原因:应该是版本不适配。(我之前是在安装opencv的时候对pip wheel setupteools进行升级,搞不懂为什么突然不好使了,我并没有对python版本进行修改)
6.解决方法:在对应的环境(python版本)之下升级或者降级,使之适配。

【numpy的官方网站里面应该有对应的适配版本:https://numpy.org/devdocs/user/troubleshooting-importerror.html】

7.升级语法:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple --upgrade numpy

在这里插入图片描述
解决问题!

8.参考文章:

Pycharm安装nympy报错
Numpy 可能存在的Python冲突安装问题
UserWarning: mkl-service package failed to import的解决方案
Pandas ImportError: Unable to import required dependencies: numpy
python: UserWarning: mkl-service package failed to import, therefore Intel® MKL initialization问题解决



问题二:

1.报错内容如下:
Traceback (most recent call last):
  File "C:\Users\Dell\Desktop\PY!\111111\P12.PY.py", line 1, in <module>
    from torch.utils.tensorboard import SummaryWriter
ModuleNotFoundError: No module named 'torch'

在这里插入图片描述

2.个人背景:我之前在pycharm上使用的python解释器是pytorch下的python解释器。【路径:G:\2E\anaconda\envs\pytorch\python.exe】
3.问题原因:python解释器不正确。(在升级numpy之后,不知为何pycharm突然将解释器进行了更改,才出现这个问题)【被更改的路径:G:\2E\anaconda\python.exe】

4.解决方法:查看当前的python 解释器(python.exe) 是否是你需要的那个,在又下角进行更改即可

在这里插入图片描述
在这里插入图片描述

5.参考文章:from torch.utils.tensorboard import SummaryWriterModuleNotFoundError: No module named ‘torch‘的报错解决
  • 18
    点赞
  • 16
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
### 回答1: "importing the numpy c-extensions failed" 的意思是导入NumPy时无法加载其C扩展模块。这可能是因为您的NumPy版本与您的Python版本不兼容,或者您的NumPy库可能已损坏或未正确安装。您可以尝试更新或重新安装NumPy,或者检查您的Python版本是否与NumPy版本兼容。 ### 回答2: numpy是Python科学计算领域中非常重要的一款开源库,它提供了大量的数学计算和矩阵运算工具,因此,它的使用非常广泛。但有时候,你使用numpy会出现如下错误:"importing the numpy c-extensions failed."。 出现该错误的原因可能有以下几种: 1. numpy未正确安装:由于numpy是Python库中的一个扩展库,因此在使用之前必须先进行安装。如果numpy未正确安装,则可能会出现该错误。此时,我们可以尝试重新安装numpy库。 2. 库路径问题:在导入numpy库时,可能由于库文件路径设置不正确而出现该错误。我们可以尝试在程序中添加正确的库文件路径。 3. 环境问题:在一些特殊的环境下(比如虚拟环境等),也可能会出现该错误。此时,我们可以尝试在其他环境下(如全局环境)运行程序,检查是否仍然出现该错误。 针对这些可能的原因,我们可以采取以下措施来解决该错误: 1. 尝试重新安装numpy库。 2. 检查库文件路径设置是否正确。 3. 尝试在其他环境下运行程序,检查是否仍然出现该错误。 4. 如果以上方法无法解决该错误,可以尝试在网络上搜寻相关问题的解决方案。 ### 回答3: numpy是Python中非常流行的科学计算库,它提供了丰富的多维数组操作函数和众多的科学计算工具。在使用numpy时,我们可能会遇到importing the numpy c-extensions failed.的错误,这是由于numpy的c扩展可能无法成功导入所致。 首先,需要明确的是,numpy中的许多操作都是通过c语言编写的扩展模块实现的,这些扩展模块的名称类似于numpy.core.multiarray等等。在导入numpy时,如果这些c扩展模块没有成功被加载,就会出现该错误提示。 解决这个问题的方法有多种,以下是几种常见的解决方法。 1. 重新安装numpy 我们可以尝试重新安装numpy库,使用pip uninstall numpy卸载numpy,然后使用pip install numpy重新安装numpy。这样可以确保我们安装的是最新版本的,并且避免由于安装问题而导致的错误。 2. 更新Python环境 如果我们使用的是较老版本的Python环境,可能无法兼容最新的numpy库。此时,我们可以尝试升级Python环境版本,以便使用较新的numpy库。 3. 检查C编译器 在安装numpy时,需要使用C编译器来编译相关的扩展模块。如果C编译器没有正确配置,则可能会导致扩展模块的编译失败,从而导致importing the numpy c-extensions failed.的错误。因此,我们需要确保已正确安装C编译器,并且在Python环境中正确配置了C编译器路径。 4. 检查Python环境变量 importing the numpy c-extensions failed.错误也可能与Python环境变量有关。例如,如果PYTHONPATH环境变量未正确设置,则可能无法找到numpy库或其依赖项,从而导致错误。因此,我们需要确保Python环境变量正确设置,并且可以正确找到numpy库的位置。 在总体上,importing the numpy c-extensions failed.错误可能有多种原因,需要对具体情况进行综合分析和处理。当遇到这个问题时,我们首先应该检查numpy库的安装、Python环境版本、C编译器等,以确定错误来源,然后尝试采取相应的解决措施。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值