常用软件安装配置
go
安装
需要定制版本上https://go.dev/dl/查看,这里给出go1.14版本
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| # 下载go1.14,不行就手动下载再上传
wget https://golang.org/doc/install?download=go1.14.7.linux-amd64.tar.gz
# 解压到/usr/local目录下
tar -C /usr/local -zxvf go1.14.7.linux-amd64.tar.gz
#配置Go环境变量
sudo vim /etc/profile
# 写入/etc/profile
export GOROOT=/usr/local/go
export GOPATH=$GOROOT/gopath
export PATH=$GOPATH/bin:$GOROOT/bin:$PATH
# 退出保存,使得环境变量生效
source /etc/profile
#查看go版本
go version
|
换国内源
1
| go env -w GOPROXY=https://goproxy.cn,direct
|
docker
Centos/Ubuntu 安装docker
1
2
3
| curl -fsSL https://get.docker.com | bash -s docker --mirror Aliyun
sudo service docker start
|
查看所有容器
查看容器日志
1
| docker logs -f da6743d61e1a
|
进入容器
1
| docker exec -i 69d1 bash
|
更换阿里源提升下载速度
首先登陆 https://cr.console.aliyun.com/cn-hangzhou/instances/mirrors
查看自己的专属加速器地址,根据地址执行下面命令
1
2
3
4
5
6
7
8
9
| sudo mkdir -p /etc/docker
sudo tee /etc/docker/daemon.json <<-'EOF'
{
"registry-mirrors": ["https://hv2pm8pp.mirror.aliyuncs.com"]
}
EOF
# 重启docker
sudo systemctl daemon-reload
sudo systemctl restart docker
|
pip
指定源安装
命令后面加-i
即可
1
| pip install tensorflow==2.6.0 -i https://mirrors.aliyun.com/pypi/simple/
|
默认换成国内源
1
2
3
4
5
6
7
8
9
10
| # 阿里源
pip config set global.index-url https://mirrors.aliyun.com/pypi/simple/
# 或:
# 清华源
pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/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/
|
pip安装制定版本
1
| pip install tensorflow==1.2.1 (==后面为所要安装的版本号)
|