Linux系统pip、conda等包管理程序下载速度慢

news/2024/11/5 10:44:18 标签: pip, conda, 镜像源, , 镜像

Linux系统pipconda等包管理程序下载速度慢的主要原因是默认的下载镜像>镜像是国外的,而解决方法是修改镜像>镜像到国内即可,具体如下

pip">pip

目前可用
http://pypi.douban.com/ 豆瓣
http://pypi.hustunique.com/ 华中理工大学
http://pypi.sdutlinux.org/ 山东理工大学
http://pypi.mirrors.ustc.edu.cn/ 中国科学技术大学
http://mirrors.aliyun.com/pypi/simple/ 阿里云
https://pypi.tuna.tsinghua.edu.cn/simple/ 清华大学

1.临时使用:

可以使用pip时添加参数 -i[url],如:

pip install -i http://pypi.douban.com/simple/ gevent

2.永久生效:

修改~/.pip/pip.conf,修改index-url至相应
(如果没有该文件或文件夹,就先在home下创建.pip文件夹,再在.pip文件夹里面创建.pip.conf文件)

[global]
index-url = http://mirrors.aliyun.com/pypi/simple
trusted-host =  mirrors.aliyun.com #对应阿里云的host,其他的可以自己查一下,也可以不写这一句

conda">conda

可用
清华
https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
中科大
http://mirrors.ustc.edu.cn/anaconda/pkgs/free/

$ conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/

然后可以输入下面的指令查看当前的

$ conda config --show

这里写图片描述

或者修改成.condarc文件,在文件中输入下面的指令。

channels:
  - https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
  - defaults
show_channel_urls: true

http://www.niftyadmin.cn/n/1016632.html

相关文章

linux 安装mysql ERROR:Job for mysqld.service failed See “systemctl status mysqld.service”

一、第一种错误: I met this problem today, and fix it with bellowed steps. 1, Check the log file /var/log/mysqld.log 2017-03-14T07:06:53.374603Z 0 [ERROR] /usr/sbin/mysqld: Cant create/write to file /var/run/mysqld/mysqld.pid (Errcode: 2 - No s…

论文解读:DenseCap: Fully Convolutional Localization Networks for Dense Captioning

本篇论文解读的排版主要参见原文的格式,针对原文中的每一个小节进行展开,有的是对原文的一个提炼和简单概括,有的是对原文中涉及但是又没有详细介绍的技术的补充和说明。 原文连接:https://cs.stanford.edu/people/karpathy/dens…

zookeeper启动失败:【zkServer.sh status Error contacting service. It is probably not running】

一、查找问题: 在前台显示问题: zkServer.sh start-foreground 端口被占用: 二、执行netstat -alnp | grep 2181 查看被占用端口,执行kill -9 4840 杀死占用端口的进程 : 三、重启zookeeper:

如何从虚拟机上的linux使用sz命令传输windows大于4G的文件

方法是先对该文件进行拆分,拆分成多个小于4G的文件,然后分别下载,下载到本地后再进行合并或直接解压,具体操作如下: 1.分拆为多个文件的命令: cat train.tar.gz | split -b 2G - train.tar.gz. 命令解释&a…

python错误:TypeError: 'module' object is not callable 解决方法

转自:http://www.phperz.com/article/14/1208/39955.html 本文为大家讲解的是python错误:TypeError: module object is not callable 解决方法,感兴趣的同学参考下。 错误描述: 程序代码 class Person: #constructor …

ubnutu桌面环境Gnome 配置tweak tool时看不到extension插件选项

问题:tweak tool中没用extension选项,这是因为没有开启gnome,解决方法是注销当前用户 然后在登录窗口的右上角,选择gnome,如下图所示 然后在弹出的窗口中选择Gnome即可(我选择的是第一个GNOME) …

给ubuntu换一个优雅的界面:ubuntu主题更换教程

本文针对的是ubuntu的GNOME桌面环境,根据ubuntu官方消息,ubuntu已经放弃原来的Unity桌面环境,改回最先使用的GNOME桌面环境,如果你觉得Gnome的默认桌面环境不够Fashion的话,可以下载自己喜欢的主题风格来更换&#xff…

pycharm中无法import tensorflow

在安装tensorflow之后,可以才命令行中正常导入,但是无法在pycharm中import tensorflow,系统报错提示: ImportError: libcublas.so.8.0: cannot open shared object file: No such file or directoryFailed to load the native Te…