代码之家  ›  专栏  ›  技术社区  ›  Aptha Gowda

导入Torch时如何修复“无法初始化类型TensorProto数据类型”错误?

  •  1
  • Aptha Gowda  · 技术社区  · 5 年前

    我在没有GPU支持的情况下,使用pip3命令为我的Windows PC安装了pytorch。 但当我试图导入手电筒时,它给出了一个错误。

    起初,有一个不同的错误说numpy版本不匹配,我更新了numpy的最新版本。

    import torch
    RuntimeError                              Traceback (most recent call last)
    <ipython-input-10-c031d3dd82fc> in <module>()
    ----> 1 import torch
    
    C:\Users\iamuraptha\Anaconda3\lib\site-packages\torch\__init__.py in <module>()
         82     pass
         83 
    ---> 84 from torch._C import *
         85 
         86 __all__ += [name for name in dir(_C)
    
    RuntimeError: generic_type: cannot initialize type "TensorProtoDataType": an object with that name is already defined
    
    1 回复  |  直到 5 年前
        1
  •  0
  •   Aptha Gowda    5 年前

    我重新安装了蟒蛇,然后为pytorch创建了一个虚拟环境,现在一切正常