2017-01-04 133 views
1

我想安裝sip,所以我可以安裝PyQt5。當我嘗試使用pip進行安裝時,會出現以下錯誤。在osx for python3上安裝sip問題

>>>pip3 install sip 
Collecting sip 
    Could not find a version that satisfies the requirement sip (from versions:) 
No matching distribution found for sip 

有誰知道我怎麼能找到SIP來找到SIP包?我也嘗試使用brew進行安裝,但我需要安裝4.19版和brew安裝版4.18。

+0

您使用的是什麼版本的Python? – MattDMo

回答

0

您可以從Python Package Index中找到SIP的下載,該軟件包索引通常從here下載。這將下載一個輪子文件,可以通過wheel python模塊進行安裝。

pip3 install wheel,然後做python3 -m wheel install <path-to-downloaded-wheel>