如何利用pip命令安装包和模块
Posted 51testing
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何利用pip命令安装包和模块相关的知识,希望对你有一定的参考价值。
python 3 安装完成已经集成了pip
安装requests
进入到Scripts目录
G:python3>cd Scripts
G:python3Scripts>pip install requtestsG:python3>cd Scripts
G:python3Scripts>pip install requtests
pip install -i https://mirrors.aliyun.com/pypi/simple/ requests
python -3 -m pip install --upgrade pip
当需要python2的pip时,只需
py -2 -m pip install xxx
当需要python3的pip时,只需
py -3 -m pip install xxx
py -2 表示电脑上面安装了两个版本的python ,指定使用python2
py -3 表示指定使用python 3
以上是关于如何利用pip命令安装包和模块的主要内容,如果未能解决你的问题,请参考以下文章