更简洁的方法是什么:
wget https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
?
我试过这个:
sudo <(python <(curl https://bootstrap.pypa.io/get-pip.py))
但它返回错误: 'IOError:[Errno 32]断管'
这有效:python <(curl https://bootstrap.pypa.io/get-pip.py)
但需要sudo
答案 0 :(得分:10)
curl https://bootstrap.pypa.io/get-pip.py | sudo python -
curl
会将给定的URL输出到stdout
python -
表示该来源将来自stdin。
答案 1 :(得分:2)
安装pip的另一种方法:
sudo python -m ensurepip