[问题解决]module ‘torch._six‘ has no attribute ‘PY3‘

        先说下环境,在Windows下使用anaconda python3.7环境,配置使用pytorch时候,执行maskrcnn-benchmark/demo/predictor.py时候出现了,找了下网上相关解决方式,但是大多都是没有说明具体文件的位置,也是弄的人模棱两可。[问题解决]module ‘torch._six‘ has no attribute ‘PY3‘_第1张图片

可以看出此目录中,此文件有用到PY3

[问题解决]module ‘torch._six‘ has no attribute ‘PY3‘_第2张图片

[问题解决]module ‘torch._six‘ has no attribute ‘PY3‘_第3张图片

 同样的,找到如下目录:

[问题解决]module ‘torch._six‘ has no attribute ‘PY3‘_第4张图片

 

打开文件,按照下图方式修改即可:

[问题解决]module ‘torch._six‘ has no attribute ‘PY3‘_第5张图片

 具体内容我放在下面,直接复制进行替换即可。

import math
import sys

inf = math.inf
nan = math.nan
string_classes = (str, bytes)
PY37 = sys.version_info[0] == 3 and sys.version_info[1] >= 7

你可能感兴趣的:(C++,opencv,图像处理/计算机视觉,pytorch,python,pytorch,windows)