golang环境的安装


本文摘自网络,作者,侵删。

  1. Extract the archive you downloaded into /usr/local, creating a Go tree in /usr/local/go.
    Important: This step will remove a previous installation at /usr/local/go, if any, prior to extracting. Please back up any data before proceeding.

For example, run the following as root or through sudo:

rm -rf /usr/local/go && tar -C /usr/local -xzf go1.16.3.linux-amd64.tar.gz
  1. Add /usr/local/go/bin to the PATH environment variable.
    You can do this by adding the following line to your $HOME/.profile or /etc/profile (for a system-wide installation):
export PATH=$PATH:/usr/local/go/bin

Note: Changes made to a profile file may not apply until the next time you log into your computer. To apply the changes immediately, just run the shell commands directly or execute them from the profile using a command such as source $HOME/.profile.

  1. Verify that you've installed Go by opening a command prompt and typing the following command:
$ go version

Confirm that the command prints the installed version of Go.


本文来自:简书

感谢作者:飞跑的蟆蛤

查看原文:golang环境的安装

相关阅读 >>

[译]Go语言内存布局

手撸Golang 基本数据结构与算法 归并排序

Go每日一库 [Go-rate] 速率限制器

Go - 实现项目内链路追踪(二)

求助!为何报错?

手撸Golang 创建型设计模式 建造者模式

Golang基础-高级数据结构

redis Go语言与redis数据库交互

Golang判断interface为nil

手撸Golang Go与微服务 saga模式之7

更多相关阅读请进入《Go》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...