Install Go
Download
Finden Sie hier die Version, die Sie installieren möchten: https://golang.google.cn/dl/
me Heruntergeladen 1.13. 7:
wget https://dl.google.com/go/go1.13.7.linux-amd64.tar.gz
Entpacken und installieren
tar -C /usr/local -xzf go1.13.7.linux-amd64.tar.gz
Für diesen Schritt sind Root-Berechtigungen erforderlich. sudo
sudo tar -C /usr/local -xzf go1.13.7.linux-amd64.tar.gz
Umgebungsvariablen konfigurieren
Bearbeiten Sie die Profildatei
sudo vi /etc/profile
Fügen Sie
export PATH=$PATH:/usr/local/go/bin
am Ende der Datei hinzu für sofortige Wirkung. Führen Sie Folgendes aus: source /etc/profile
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
rrreee
Methode zwei, holen Sie sich die Installation