前端之家收集整理的这篇文章主要介绍了
bash – curl并运行python脚本,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么是更短的
方法:
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
curl https://bootstrap.pypa.io/get-pip.py | sudo python –
curl会将给定的URL输出到stdout
python – 表示,该源将从stdin中获取.
原文链接:https://www.f2er.com/bash/384412.html