ImportError: No module named 'model.utils.cython_bbox'??
this miss
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 developif 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!
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
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