2014-05-08 34 views
1

我不太熟悉pip,但我發現這種行爲很奇怪。我想安裝metar軟件包。我發現,當我搜索:即使它在搜索結果中,爲什麼不能安裝metar分配?

[[email protected] project]$ pip search metar 
... 
metar      - Metar - a package to parse METAR coded weather 
          reports 

然而,當我嘗試安裝它:

[[email protected] project]$ pip install metar 
Downloading/unpacking metar 
    Could not find any downloads that satisfy the requirement metar 
Cleaning up... 
No distributions at all found for metar 
Storing complete log in /home/user/.pip/pip.log 

如果包在搜索結果中顯示出來,我爲什麼不能安裝?

回答

0

如果它是一個外部的下載和未經覈實的,你可以嘗試以下方法:

pip install metar --allow-unverified metar 
相關問題