换源

简介: 换源

Warning

不知道为什么,这么多次尝试下来,不管是 Windows 还是 Linux ,我使用清华源都是有问题的,建议使用阿里源


可用软件源列表


临时使用

$ pip install scrapy -i http://mirrors.aliyun.com/pypi/simple/ 点击复制复制失败已复制


永久修改-命令版

$ pip config set global.index-url http://mirrors.aliyun.com/pypi/simple/ 
$ pip config set global.trusted-host mirrors.aliyun.com点击复制复制失败已复制


永久修改-配置文件


Linux

修改 ~/.pip/pip.conf (没有就创建一个), 内容如下:

[global]
timeout = 6000
index-url = http://mirrors.aliyun.com/pypi/simple/ 
trusted-host = mirrors.aliyun.com点击复制复制失败已复制


Windows

win+R 打开用户目录 %HOMEPATH% ,在此目录下创建 pip 文件夹,在 pip 目录下创建 pip.ini 文件, 内容如下:

[global]
timeout = 6000
index-url = http://mirrors.aliyun.com/pypi/simple/ 
trusted-host = mirrors.aliyun.com
目录
相关文章
debian11换源
直接编辑 /etc/apt/sources.list 文件
1098 0
|
27天前
|
Ubuntu 开发工具 git
Ubuntu安装homebrew的完整教程
本文介绍了如何在没有公网的情况下安装 Homebrew。首先访问 Homebrew 官网,然后通过阿里云的镜像克隆安装脚本,并创建普通用户进行安装。接着修改 `install.sh` 文件指向国内镜像,执行安装命令。最后配置环境变量并更换 Homebrew 源为国内镜像,确保安装顺利。
174 50
|
4月前
pip换源
pip换源
112 0
|
5月前
|
Ubuntu Linux iOS开发
|
6月前
|
Kubernetes Linux 网络安全
K8S 离线安装版 1.23.1
在准备Kubernetes (k8s) 集群部署时,执行了以下步骤: 1. 关闭防火墙和服务:`systemctl stop firewalld && systemctl disable firewalld`,并禁用SELinux和swap。 2. 添加主机条目到`/etc/hosts`,同步时间使用`ntpdate time.windows.com`。 3. 设置k8s仓库源,安装必要的工具,如`yum install yum-utils -y`。 4. 安装Docker,并下载k8s相关软件包。 5. 制作离线包,使用`docker save`保存镜像,然后在目标机器上用`docker
315 0
|
Kubernetes Docker 容器
离线安装k8s
一、环境信息: 环境信息(采用一个master节点+两个node节点) master 172.16.20.11 node1 172.16.20.12 node2 172.16.20.13 操作系统版本 CentOS Linux release 7.
3122 0
|
Ubuntu 开发工具 git
Ubuntu安装GitKraken
Ubuntu安装GitKraken
595 0
|
Ubuntu
换源
换源
699 0
换源(命令版)——推荐
换源(命令版)——推荐
122 0
|
资源调度 Shell Windows
换源(工具版)
换源(工具版)
225 0