“Golang”的版本间的差异
跳到导航
跳到搜索
第9行: | 第9行: | ||
#加入 | #加入 | ||
echo 'export PATH=$PATH:/usr/local/go/bin' >>/etc/profile && source /etc/profile | echo 'export PATH=$PATH:/usr/local/go/bin' >>/etc/profile && source /etc/profile | ||
+ | |||
+ | |||
+ | export PATH=/usr/local/go/bin/:$PATH | ||
+ | export GOPATH=/root/go #如果你用root运行 | ||
+ | |||
+ | |||
#export GOROOT=/usr/local/go/ | #export GOROOT=/usr/local/go/ |
2020年6月4日 (四) 02:47的版本
install
wget -c https://dl.google.com/go/go1.14.4.linux-amd64.tar.gz tar -C /usr/local -xzf go$VERSION.$OS-$ARCH.tar.gz tar -xvf go1.14.4.linux-amd64.tar.gz -C /usr/local/ #加入 echo 'export PATH=$PATH:/usr/local/go/bin' >>/etc/profile && source /etc/profile export PATH=/usr/local/go/bin/:$PATH export GOPATH=/root/go #如果你用root运行 #export GOROOT=/usr/local/go/ #export PATH=/usr/local/go/bin/:$PATH #export GOPATH=/root