一分钟学完python的pip安装方法
程序员文章站
2022-03-10 19:47:38
1.找到python文件夹Scripts所在的位置,按住shift键,鼠标右键点击“在此处打开命令窗口”2.pip更新的方法在python中python -m pip install --upgrade pip在anaconda中conda install mingw libpython3.下载所需要的库在命令窗口中输入pip install 库的名字使用镜像的方法,下载会快很多,如下pip install 库的名字 -i https://tuna.tsinghua.edu.cn/...
1.找到python文件夹Scripts所在的位置,按住shift键,鼠标右键点击“在此处打开命令窗口”
2.pip更新的方法
在python中
python -m pip install --upgrade pip
在anaconda中
conda install mingw libpython
3.下载所需要的库
在命令窗口中输入
pip install 库的名字
使用镜像的方法,下载会快很多,如下
pip install 库的名字 -i https://pypi.tuna.tsinghua.edu.cn/simple
其他镜像源
清华:https://pypi.tuna.tsinghua.edu.cn/simple
阿里云:http://mirrors.aliyun.com/pypi/simple/
中国科技大学 https://pypi.mirrors.ustc.edu.cn/simple/
华中理工大学:http://pypi.hustunique.com/
山东理工大学:http://pypi.sdutlinux.org/
豆瓣:http://pypi.douban.com/simple/
本文地址:https://blog.csdn.net/weixin_46528046/article/details/107654340