美文网首页
Python pip 安装与使用

Python pip 安装与使用

作者: 弦好想断 | 来源:发表于2021-09-15 14:47 被阅读0次

如果你不小心把python虚拟环境下的pip玩没了,可以在scripts下执行
https://www.runoob.com/w3cnote/python-pip-install-usage.html

python -m ensurepip --default-pip #这一步好像可以省略,直接走第二步
curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py ## 下载安装脚本
python get-pip.py  ## 运行安装脚本

相关文章

网友评论

      本文标题:Python pip 安装与使用

      本文链接:https://www.haomeiwen.com/subject/nxnkgltx.html