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 实现lfu 缓存算法

手撸Golang 结构型设计模式 代理模式

Golang协程如何关闭

Golang面向对象编程之构造函数【struct&new】

Golang判断js文件是否存在

Golang可以用来做什么

Golang pprof 性能分析工具

Go实现安全并发map读写

Go 语言常用排序

Golang怎么判断数组是否为空

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




打赏

取消

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

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

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

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

评论

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