PyCharm\VsCode——Python第三方库下载换源

为什么要换源?

Python第三方库下载默认镜像源在国外,因为特殊的原因在国内的你我利用这个镜像源往往速度会非常地慢,因此为了提速将这个默认镜像源换成国内的镜像源是非常有必要的。

镜像源的种类有哪些?

|--------|------------------------------------------|
| 清华镜像源 | https://pypi.tuna.tsinghua.edu.cn/simple |
| 阿里云镜像源 | http://mirrors.aliyun.com/pypi/simple |
| 中科大镜像源 | https://pypi.mirrors.ustc.edu.cn/simple |

换源的方法有哪些?

  • 全局替换------一劳永逸

win+R键进入shell终端,在shell终端输入以下命令

pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
  • 单次替换

在shell终端输入以下命令

pip install -i <镜像源> <第三方库名>

例如:此次安装pandas第三方库是在清华镜像源中拉取的pandas

pip install -i https://pypi.tuna.tsinghua.edu.cn/simple pandas
相关推荐
界面开发小八哥4 分钟前
「Java EE开发指南」如何使用Visual JSF编辑器设计JSP?(二)
java·ide·java-ee·开发工具·myeclipse
技术程序猿华锋6 分钟前
【ChatGPT大模型开发调用】如何获得 OpenAl API Key?
python·chatgpt·flask
Strive_Sun12 分钟前
使用 vscode 调试 nodejs 代码
ide·vscode·编辑器
冷眼看人间恩怨1 小时前
【Android】Android Studio打包APK、精简APK大小与规范处理详解
android·ide·android studio·apk
敲代码不忘补水1 小时前
Python Matplotlib 经典 3D 绘图类型:从二维到三维的可视化解析
开发语言·python·3d·数据分析·numpy·pandas·matplotlib
努力的小好1 小时前
【python】摄像头调用马赛克恶搞
python
AI小杨1 小时前
【数据分析】一、pandas数据处理指南:100个基于pandas数据预处理方法
python·数据挖掘·数据分析·pandas·pandas使用技巧
weixin_431470861 小时前
文本数据分析(nlp)
开发语言·python·深度学习·自然语言处理
終不似少年遊*1 小时前
数据分析-机器学习-第三方库使用基础
python·机器学习·数据挖掘·数据分析·numpy
天天要nx2 小时前
D79【 python 接口自动化学习】- python基础之HTTP
python