Condaと国内のPythonのインストールソース

Condaと国内のPythonのインストールソース

Windowsシステム:

pythonの国内源泉方法を交換してください。
「ユーザー\ [XXXX]:(ない新しい、xxxは現在のユーザーディレクトリを表します)、次を設定し \ PIP \ pip.ini C」 のファイルに:

[global]
index-url = https://pypi.tuna.tsinghua.edu.cn/simple
[install]
trusted-host=mirrors.aliyun.com

次のようにコマンド入力端子のconda国内源を交換する方法があります。

conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/
conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/
conda config --set show_channel_urls yes

ウィンドウで変更することができ、「C:\ユーザー[XXXX ] .condarc」 ドキュメント以下:
チャネル:

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

デフォルトのソースと引き換えに:

conda config --remove-key channels

Linuxシステム:

pythonの国内源泉方法を交換してください。
以下の「〜/ .pip / pip.conf」ファイル(いない新しい)に配置された。次のコマンドを実行します。

vim  ~/.pip/pip.conf

次のように入力します。

[global]
index-url = http://pypi.douban.com/simple
trusted-host = pypi.douban.com

交換用condaの方法(Windowsのシステム設定で)国内の情報源。
修正方法apt-getのソース。
(1)バックアップするには、次のコマンドを実行し、「/etc/apt/sources.list」ファイルを変更します。

sudo cp /etc/apt/sources.list /etc/apt/sources.list.backup
sudo vi /etc/apt/sources.list

(2)コピーバージョンは元アドレスに対応する:https://mirror.tuna.tsinghua.edu.cn/help/ubuntu/

Ubuntuの14

自分の注釈をキャンセルする必要があれば、高速aptのアップデートを高めるために、デフォルトのイメージソースに注意してください。

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ trusty-proposed main restricted universe multiverse

Ubuntuの16

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-updates main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-backports main restricted universe multiverse
deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-security main restricted universe multiverse

# 预发布软件源,不建议启用
# deb https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse
# deb-src https://mirrors.tuna.tsinghua.edu.cn/ubuntu/ xenial-proposed main restricted universe multiverse

(3)最後に、更新を実行します。

sudo apt-get update

国内アリクラウドソースの変更にCentOSにyumのソース
(1)バックアップ

mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup

/etc/yum.repos.d/に新しいCentOSの-Base.repoをダウンロードする(2)

CentOSの5

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo

CentOSの6

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo

CentOSの7

wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

3、生成されたキャッシュを実行します

yum makecache

おすすめ

転載: www.cnblogs.com/aric2016/p/12080013.html