python 3 安装完成已经集成了pip
安装requests
进入到Scripts目录
G:\python3>cd Scripts
G:\python3\Scripts>pip install requtestsG:\python3>cd Scripts
G:\python3\Scripts>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