Faster RCNN pytorch編譯問題
阿新 • • 發佈:2018-11-26
1.要先編譯faster rcnn
錯誤1:error: no commands supplied
~/HelloWorld/RCNN/faster_rcnn_pytorch-master/faster_rcnn$ python setup.py usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: setup.py --help [cmd1 cmd2 ...] or: setup.py --help-commands or: setup.py cmd --help error: no commands supplied
解決:進入資料夾下改命令為:python setup.py install
編譯後 build資料夾下新增lib.linux-x86_64-3.5資料夾,內含相應連結,如utils下增加cython_bbox.cpython-35m-x86_64-linux-gnu.so和cython_nms.cpython-35m-x86_64-linux-gnu.so;nms資料夾下新增gpu_nms.cpp;utils資料夾下新增bbox.c,nms.c;
2.安裝模組出現“can’t found xxx”或者其他找不到xxx的錯誤
建議把模組安裝包解壓道python 的路徑中,一般來說這個問題都能這樣解決
3.生成Cython模組
終端輸入:
cd /home/**(您伺服器的名字)/py-faster-rcnn/lib
make