2017-07-19 52 views
2

所以...我已經嘗試了幾種方法來在Python上下載SimpleITK(pip install),但它根本不工作! (這裏:SimpleITK python 2.7.12 installation issue)現在我使用easy_install的和我得到這個錯誤:sudo easy_install爲SimpleITK沒那麼容易

Searching for simpleitk 
Reading https://pypi.python.org/simple/simpleitk/ 
Download error on https://pypi.python.org/simple/simpleitk/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) -- Some packages may not be found! 
Couldn't find index page for 'simpleitk' (maybe misspelled?) 
Scanning index of all packages (this may take a while) 
Reading https://pypi.python.org/simple/ 
Download error on https://pypi.python.org/simple/: [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590) -- Some packages may not be found! 
No local packages or download links found for simpleitk 
error: Could not find suitable distribution for Requirement.parse('simpleitk') 

顯然,這是某種形式的認證問題,我不知道如何來克服。 :/ Heelp

編輯:最後得到它的工作!

隨着

pip install --trusted-host pypi.python.org SimpleITK 

在須藤蘇模式

+0

我試圖運行'點子安裝simpleitk'我使用python 2.7.12跑進沒有任何問題和PIP 9.0.1 –

+0

我明白了...問題是,我使用的電腦有一些奇怪的安全漏洞。但我知道了=) – user

回答

1

最有可能你的Python不支持SSL的編譯。你可以用下面的命令檢查:

python -c 'import socket; print(hasattr(socket, "ssl"))' 
相關問題