免费资源网 – https://freexyz.cn/
Linux 安装 golang 和 dep (附错两个误解决方法)
安装 Go
下载
在这里找想要安装的版本: https://golang.google.cn/dl/
我下载了 1.13.7:
wget https://dl.google.com/go/go1.13.7.linux-AMD64.tar.gz解压安装
tar -C /usr/local -xzf go1.13.7.linux-amd64.tar.gz这一步需要 root 权限,非 root 用户要加 sudo
sudo tar -C /usr/local -xzf go1.13.7.linux-amd64.tar.gz配置环境变量
编辑 profile 文件
sudo vi /etc/profile在文件末尾添加
export PATH=$PATH:/usr/local/go/bin立即生效需要执行: source /etc/profile
安装 dep
方法一 通过二进制安装包安装
mkdir -p go/bin curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh方法二 go get 安装
go get -u github.com/golang/dep/cmd/dep方法三 直接下载
方法一、方法二都太慢了
https://github.com/golang/dep/releases/
直接到 github 的 release 页面下载,
wget https://github.com/golang/dep/releases/download/v0.5.4/dep-linux-amd64下载完了添加可执行权限移动到 /usr/local/go/bin 目录下,再重命名为 dep 就好了
chmod +x dep-linux-amd64 mv dep-linux-amd64 /usr/local/go/bin/dep错误解决
Installation requires your GOBIN directory /root/go/bin to exist. Please create it.按照教程直接操作是不行的
[root@zrcq7d8itgvcrhkq-1130695 ~]# curl https://raw.githubusercontent… | sh
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 5230 100 5230 0 0 1982 0 0:00:02 0:00:02 –:–:– 1982
ARCH = amd64
OS = linux
Installation requires your GOBIN directory /root/go/bin to exist. Please create it.这个错误说明你没有 go/bin 目录,先执行 mkdir -p go/bin 就好了
curl: (7) FAIled connect to raw.githubusercontent.com:443; Connection refused网络问题,多试几次或者使用方法二
免费资源网 – https://freexyz.cn/
© 版权声明
THE END
暂无评论内容