Windows系統下cython_bbox庫的正確安裝步驟

前言

最近做的項目需要安裝cython_bbox包,但是當我天真的輸入pip install cython_bbox準備滿心歡喜的等待安裝成功卻發現…,它報錯瞭,這是一個從未見過的、非常長的報錯,它長這個樣子:

我震驚瞭!這是個啥子 ? 輾轉反側,不能眠的我,天真的又加上瞭中科大源加速,發現並不是速度問題,依舊不出意外的失敗瞭,可是網上的教程就是這麼裝的呀?我一直不明所以,直到有一天在github上才尋找到瞭答案,所以這篇文章,正是為瞭分享這一次踩坑的經歷,幫助大傢跳過我悲慘的經歷。 

正確安裝步驟 

一、安裝cython

cython非常容易安裝:

pip install cython

 太慢瞭?加速安裝!

pip install cython -i https://pypi.mirrors.ustc.edu.cn/simple

二、安裝cython_bbox

這是一條非常珍貴的命令,找瞭好久才找到的:(有時候運行該命令一次便可以安裝成功,有時候要運行好幾次,這可能和網絡有關。)

pip install -e git+https://github.com/samson-wang/cython_bbox.git#egg=cython-bbox

三、 安裝pycocotools

安裝pycocotools是因為這個包經常與cython_bbox合作使用,也就是講:安裝瞭cython_bbox,那麼安裝pycocotools已經是一種非常常見的配套安裝。

pip install pycocotools

太慢瞭?加速安裝

pip install pycocotools -i https://pypi.mirrors.ustc.edu.cn/simple

完畢!

附:安裝cython_bbox報錯解決辦法:Preparing metadata (setup.py) … error error: subprocess-exited-with-error

報錯內容如下圖所示:

Preparing metadata (setup.py) … error
  error: subprocess-exited-with-error
  
  × python setup.py egg_info did not run successfully.
  │ exit code: 1
  ╰─> [6 lines of output]
      Traceback (most recent call last):
        File "<string>", line 2, in <module>
        File "<pip-setuptools-caller>", line 34, in <module>
        File "/tmp/pip-install-a509pn1e/cython-bbox_4f8cde4aec364123b4ba34e507b2a155/setup.py", line 10, in <module>
          from Cython.Build import cythonize
      ModuleNotFoundError: No module named 'Cython'
      [end of output]
  
  note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed
 
× Encountered error while generating package metadata.
╰─> See above for output.

解決辦法:

先安裝Cpython然後再安裝cython_bbox

pip install Cython
pip install cython_bbox

註意在ubuntu系統下去安裝,在windows系統上我嘗試瞭還是安裝不成功,還沒發現如何解決,如果有成功方法的可評論區留言。

總結

到此這篇關於Windows系統下cython_bbox庫的正確安裝步驟的文章就介紹到這瞭,更多相關cython_bbox庫正確安裝步驟 內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: