博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
pip install torch on windows, and the 'from torch._C import * ImportError: DLL load failed:' s...
阅读量:5297 次
发布时间:2019-06-14

本文共 569 字,大约阅读时间需要 1 分钟。

通过pip安装PyTorch 0.4.0成功(cpu, not gpu; python3.5; pip):

 

pip3 install http://download.pytorch.org/whl/cpu/torch-0.4.0-cp35-cp35m-win_amd64.whl

pip3 install torchvision

 

但是import时报错。

  import torch

  File "D:\Python\Python36\lib\site-packages\torch\__init__.py", line 78, in <module>
    from torch._C import *
ImportError: DLL load failed: 找不到指定的模块。

解决:

  • Download 
  • put the dll files in Library\bin into a dir
  • append the path of it to the environment variable PATH.

参考:

验证by me and:

https://my.oschina.net/lilinzero/blog/1822807

 

转载于:https://www.cnblogs.com/squirrel2300/p/9183712.html

你可能感兴趣的文章
2017-2018-2偏微分方程复习题解析10
查看>>
Java抽象类和接口的比较
查看>>
iOS UI控件5-UIPickerView
查看>>
php连接postgresql数据库
查看>>
移动应用开发选型:向左还是向右?
查看>>
开发进度一
查看>>
MyBaits学习
查看>>
管道,数据共享,进程池
查看>>
CSS
查看>>
[LeetCode] 55. Jump Game_ Medium tag: Dynamic Programming
查看>>
[Cypress] Stub a Post Request for Successful Form Submission with Cypress
查看>>
程序集的混淆及签名
查看>>
thinkphp框架 中 ajax 的应用
查看>>
JAVA排序(一) Comparable接口
查看>>
判断9X9数组是否是数独的java代码
查看>>
Leetcode 268 Missing Number
查看>>
00-自测1. 打印沙漏
查看>>
UNITY在VS中调试
查看>>
福建省第八届 Triangles
查看>>
P1182 数列分段`Section II` P1316 丢瓶盖 二分答案
查看>>