pip config unset global.index-url命令用于删除pip的全局配置中的global.index-url项。以下是对该命令的详细解释和操作步骤: 理解pip config unset命令的功能和用法: pip config unset命令用于删除pip的配置项。 通过指定配置项的名称,可以删除相应的配置。 确认要删除的配置项是global.index-url: global.index-...
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 如果set多次,似乎只能保存最后一次set的镜像源。 1.2 删除 pip config unset global.index-url 1.3 查看 pip config list 2 换源方式 这里我们提供两种换源的方式:临时换源,永久换源 2.1 临时换源:参数-i [镜像源地址] 临时换源...
永久换源豆瓣 pip config set global.index-url http://pypi.douban.com/simple 清华大学 pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 中国科技大学 pip config set global.index-…
pip configunsetglobal.index-url 1. 这会将pip的全局配置中的index-url设置清除,从而切回到默认源。执行完上述命令后,再次使用pip安装包时,将会从默认源中下载包。 方法二:编辑pip配置文件 我们也可以手动编辑pip的配置文件来切回到默认源。首先找到pip的配置文件,通常在~/.pip/pip.conf或~/.config/pip/pip.c...
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 移除源 pip config unset global.index-url 国内源地址 阿里云 https://mirrors.aliyun.com/pypi/simple/ 豆瓣https://pypi.douban.com/simple/ 清华大学(推荐) https://pypi.tuna.tsinghua.edu.cn/simple/ ...
pip config unsetglobal.index-url 其他常用pip命令 install 安装包 无参数, 直接从pypi中查找下载 >> pip install Django# 安装最新稳定的版本,可能会将某些依赖的版本更新为符合的版本。所以要可能的话,项目中版本号全部都限制好。>> pip install Django==3.0# 安装3.0版本>> pip install Django>=3.0# 安装3....
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple 这样以后使用pip安装包时,默认就会使用清华大学的镜像源。如果你想要为特定的项目设置镜像源,可以在该项目的根目录下创建一个名为pip.conf(Linux/macOS)或pip.ini(Windows)的文件,并写入以下内容:[global]index-url ...
pip config unset name 将name替换为要删除的配置项名称。例如,对于清华数据源的配置项global.index-url,可以使用以下命令删除它: pip config unset global.index-url 执行上述命令后,该配置项将被删除。重复此步骤以删除其他配置项(如extra-index-url等)。
$ pip3 config edit --editor vim --user # 查看某项配置的值 $ pip3 config get global.index-url --user https://mirrors.aliyun.com/pypi/simple # 删除某项配置 $ pip3 config unset global.index-url --user Writing to /home/xxx/.config/pip/pip.conf...
阿里源 pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/ 腾讯源 pip config set global.index-url http://mirrors.cloud.tencent.com/pypi/simple 豆瓣源 pip config set global.index-url http://pypi.douban.com/simple/ 3.换回默认源 pip config unset global.index-url ...