py-RFCN-编译问题

1. python3.5 报错

Traceback (most recent call last):

  File "setup.py", line 58, in
    CUDA = locate_cuda()
  File "setup.py", line 53, in locate_cuda
    for k, v in cudaconfig.iteritems():
AttributeError: 'dict' object has no attribute 'iteritems'
Makefile:2: recipe for target 'all' failed

make: *** [all] Error 1


解决方法:

Python3.5中:iteritems变为items

你可能感兴趣的:(python)