红联Linux门户
Linux帮助

DevStack安装时报“download of get-pip.py failed”

发布时间:2016-10-27 15:03:14来源:voidcn.com作者:voidcn
这个可能会有多种原因造成。网上搜了一下,有人说需要手动下载,步骤如下:
 
打开终端,输入:
wget http://python-distribute.org/distribute_setup.py
sudo python distribute_setup.py
wget https://github.com/pypa/pip/raw/master/contrib/get-pip.py
sudo python get-pip.py
 
然后在devstack/tools目录下,找到install_pip.py,注释掉install_get_pip这个函数调用,再执行./stack.sh。
 
但是我用wget时,一直是404。后来又查了一下,发现是我机器时间不对导致。
date -s 修改为当前时间,重新执行./stack.sh就可以了。
 
本文永久更新地址:http://www.linuxdiyf.com/linux/25443.html