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 容器名:路径 #文件复制