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 适合开发什么

Golang依赖注入工具wire指南

chan(rutime. hchan)结构

分布式事务最经典的七种解决方案

Golang基础-高级数据结构

Godoc命令不存在的解决方法

一周 Go world 新鲜事

Go语言都用什么框架

Golang 优秀框架有哪些

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




打赏

取消

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

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

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

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

评论

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