一:python下setuptools安裝( No module named setuptools 解決方案)python
1. 下載:
在它的官網能夠下載到安裝包:
https://pypi.python.org/pypi/setuptools
頁面最下面的是它的安裝連接,如:
$wget --no-check-certificate https://pypi.python.org/packages/source/s/setuptools/setuptools-12.0.3.tar.gz#md5=f07e4b0f4c1c9368fcd980d888b29a65
2. 安裝
$ tar -zxvf setuptools-12.0.3.tar.gz
$ cd setuptools=12.0.3
$ python setup.py installcurl
二:Could not find suitable distribution for Requirement.parse('meld3>=1.0.0')ui
解決辦法:
上網查詢了問題緣由: 是curl的證書太老了須要下載最新的證書:
下載最新的證書文件 、
$ wget http://curl.haxx.se/ca/cacert.pem
改名爲ca-bundle.crt放置到默認目錄
$ mv cacert.pem ca-bundle.crt
$ mv ca-bundle.crt /etc/pki/tls/certs url