py-faster-rcnn icon indicating copy to clipboard operation
py-faster-rcnn copied to clipboard

Successfully Built on Windows

Open MulongXie opened this issue 6 years ago • 1 comments

For anyone who is struggling in using this repo on windows, download the below repo and replace the lib file.

https://github.com/MrGF/py-faster-rcnn-windows

MulongXie avatar Jul 26 '19 01:07 MulongXie

There would be an error saying

Traceback (most recent call last): File "setup.py", line 66, in CUDA = locate_cuda() File "setup.py", line 61, in locate_cuda for k, v in cudaconfig.iteritems(): AttributeError: 'dict' object has no attribute 'iteritems' make: *** [Makefile:2: all] Error 1 --

Then you should revise the line 61 for k, v in cudaconfig.iteritems(): to for k, v in cudaconfig.items():

MulongXie avatar Jul 26 '19 01:07 MulongXie