博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
go 相关常用命令(updateing)
阅读量:5122 次
发布时间:2019-06-13

本文共 500 字,大约阅读时间需要 1 分钟。

 

# Go 下载

https://golang.org/dl/

 

 

# Go 安装

tar -C /usr/local -xzf go$VERSION.$OS-$ARCH.tar.gz
vim /etc/profile
export PATH=$PATH:/usr/local/go/bin

 

# go 提速

vim    ~/.bashrc 或 ~/.bash_profile

 

# 启用 Go Modules 功能

export GO111MODULE=on
# 配置 GOPROXY 环境变量
export GOPROXY=https://goproxy.io

 

# 设置GO的环境变量

Edit your ~/.bash_profile to add the following line:
export GOPATH=$HOME/go
Save and exit your editor. Then, source your ~/.bash_profile.
source ~/.bash_profile

 

转载于:https://www.cnblogs.com/Cong0ks/p/11152719.html

你可能感兴趣的文章
bzoj2038 [2009国家集训队]小Z的袜子(hose)
查看>>
Java反射机制及其Class类浅析
查看>>
Postman-----如何导入和导出
查看>>
移动设备显示尺寸大全 CSS3媒体查询
查看>>
图片等比例缩放及图片上下剧中
查看>>
【转载】Linux screen 命令详解
查看>>
background-clip,background-origin
查看>>
Android 高级UI设计笔记12:ImageSwitcher图片切换器
查看>>
Blog文章待看
查看>>
【Linux】ping命令详解
查看>>
对团队成员公开感谢博客
查看>>
java学习第三天
查看>>
python目录
查看>>
django+uwsgi+nginx+sqlite3部署+screen
查看>>
Andriod小型管理系统(Activity,SQLite库操作,ListView操作)(源代码下载)
查看>>
在Server上得到数据组装成HTML后导出到Excel。两种方法。
查看>>
浅谈项目需求变更管理
查看>>
经典算法系列一-快速排序
查看>>
设置java web工程中默认访问首页的几种方式
查看>>
ASP.NET MVC 拓展ViewResult实现word文档下载
查看>>