Faster-rcnn.pytorch: ImportError: No module named 'model.utils.cython_bbox'

Created on 12 Oct 2019  路  2Comments  路  Source: jwyang/faster-rcnn.pytorch

ImportError: No module named 'model.utils.cython_bbox'??
this miss

Most helpful comment

Install all the python dependencies using pip:

pip install -r requirements.txt
Compile the cuda dependencies using following simple commands:

You need to compile it from https://github.com/jwyang/faster-rcnn.pytorch/issues/570

cd lib
python setup.py build develop

if you're using python3, maybe you will encounter

error: invalid command 'develop'

Follow this one,
https://github.com/django-extensions/django-extensions/issues/92

All 2 comments

Install all the python dependencies using pip:

pip install -r requirements.txt
Compile the cuda dependencies using following simple commands:

You need to compile it from https://github.com/jwyang/faster-rcnn.pytorch/issues/570

cd lib
python setup.py build develop

if you're using python3, maybe you will encounter

error: invalid command 'develop'

Follow this one,
https://github.com/django-extensions/django-extensions/issues/92

Install all the python dependencies using pip:

pip install -r requirements.txt
Compile the cuda dependencies using following simple commands:

You need to compile it from #570

cd lib
python setup.py build develop

if you're using python3, maybe you will encounter

error: invalid command 'develop'

Follow this one,
django-extensions/django-extensions#92

it works!
much thanks to your sharing!

Was this page helpful?
0 / 5 - 0 ratings