Linux(Ubuntu18.04)docker、conda、pip源等杂记

本文介绍了如何在Linux和Windows环境下修改pip和Conda的官方源为国内镜像,以加快软件包下载速度,并提供了清华、阿里云等常见镜像地址。同时,讲解了如何配置Docker以使用国内镜像,包括常用操作和国内镜像源的添加。
摘要由CSDN通过智能技术生成

1. pip修改官方源

Linux下创建文件 ~/.pip/pip.conf

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

或者(win上同样适用)

pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/

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

2. Conda

安装

官网下载安装包Anaconda3-2020.07-Linux-x86_64.sh

bash Anaconda3-2020.07-Linux-x86_64.sh

使用

更换国内源

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 --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/cloud/pytorch/ 
conda config --set show_channel_urls yes

Windows如果出现连接错误,可以注释掉配置文件(用户目录下 .condarc)中-default

注意: 在安装pytorch的时候,去掉官方的-c pytorch, 因为这个指令是从官网下载,会很慢


设置默认不启动(去掉终端basic)

conda config --set auto_activate_base false

简单用法

conda create -n xxxx python=3.6 #创建python3.6的环境
conda env list #显示当前环境
conda activate xxx # 激活xxx环境
conda deactivate # 退出当前环境
conda install xxx # 使用conda下载包。同样的包只会下载一次,其他环境使用时自动复制无需重新下载。存储到Anaconda/pkgs中

3. docker

常用

docker images #显示本地的images
docker ps # 显示当前运行的容器
docker ps -a # 显示所有容器
docker rm xxx # 删除xxx容器,可以是名字或者ID
docker pull xxx:yyy # 拉去xxx进行,该镜像tag为yyy。不写yyy默认latest
docker run -itd xxx:yyy /usr/bash #运行xxx:yyy镜像。
# -i 标准输入 -t 返回终端 -d 后台运行,加-d时不会自动进入
docker exec -it name
docker cp file.txt 容器名:路径 #文件复制
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值