解决:RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb

  • 1. 问题
  • 2. 分析
  • 3. 解决

1. 问题

import torch时报错:RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb
解决:RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb_第1张图片

2. 分析

这是numpy版本与python版本不匹配的问题

3. 解决

  1. 卸载原来版本的numpy
pip uninstall numpy

2.下载相匹配的numpy版本
在https://www.lfd.uci.edu/~gohlke/pythonlibs/找到对应版本的numpy,然后下载到本地
解决:RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb_第2张图片
3. 安装

pip install +文件路径+文件名

解决:RuntimeError: module compiled against API version 0xc but this version of numpy is 0xb_第3张图片
即可安装成功,import torch也不报错了

你可能感兴趣的:(Problems,and,Solutions,python,anaconda,numpy)