安裝pycocotools前先確認電腦是否已安裝Visual studio 2015,
Microsoft Visual C++ 2015 Build Tools: 點擊我
下載其他舊版本的Visual Studio: 點擊我
接著便可以直接安裝pycocotools套件,
pycocotools套件來源參考如下:
COCOAPI的github: 點擊我
安裝pycocotools步驟如下:
1. 先安裝git套件(已安裝過則省略)
輸入: conda install git
2. 安裝pycocotools
輸入: pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
如果上述步驟無法正常安裝完成,
請繼續往下看,
因版版電腦本身安裝visual studio的版本共有兩個分別是2015跟2017,
但執行安裝pycocotools卻發生如下錯誤:
LINK: fatal error LNK1158: 無法執行 'rc.exe'
首先我們需要將rc.exe加入環境變數,
因此開啟本機→內容→進階系統設定→環境變數→Path,
Path可以選擇設定在使用者變數或者系統變數,
將"C:\Program Files (x86)\Windows Kits\10\bin\x64"加入,
接著到"C:\Program Files (x86)\Windows Kits\8.1\bin\x86"找到rc.exe及rcdll.dll兩個檔案,
並做複製動作,
將剛剛兩個檔案貼在下方路徑內,
"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\bin"
再重新安裝pycocotools便成功囉~
輸入: pip install git+https://github.com/philferriere/cocoapi.git#subdirectory=PythonAPI
留言列表