ubuntu 之 go+/goplus 安装
2021/10/17 7:09:59
本文主要是介绍ubuntu 之 go+/goplus 安装,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
目前情况是要安装 goplus/go+ 之前 必须先安装 golang golang下载地址:https://golang.google.cn/dl/ 或者 https://studygolang.com/dl安装 golang
1 wget -c https://dl.google.com/go/go1.14.2.linux-amd64.tar.gz -O - | sudo tar -xz -C /usr/local 2 vim ~/.bashrc 或者 .zshrc 3 export PATH=$PATH:/usr/local/go/bin 4 source ~/.bashrc 或者 .zshrc 5 go version # 验证 go version go1.14.2 linux/amd64
安装 goplus
1 go env -w GOPROXY=https://goproxy.cn # 国内七牛云代理 2 git clone git@github.com:goplus/gop.git 3 cd gop 4 ./all.bash
vsvode 插件名字:goplus
go+ 文件后缀名字是:gop
go+ 相关命令
1 gop run # Run a Go+ program #运行Go+程序 2 gop install # Build Go+ files and install target to GOBIN #编译Go+文件并将目标安装到GOBIN 3 gop build # Build Go+ files #编译Go+文件 4 gop test # Test Go+ packages #测试Go+包 5 gop fmt # Format Go+ packages #格式Go+包 6 gop clean # Clean all Go+ auto generated files #清理所有Go+自动生成的文件 7 gop go # Convert Go+ packages into Go packages #将go+包转换为go
其他
1. Go+官网:https://goplus.org/ 2. Go+ spx demo:https://github.com/goplus/gop/tree/main/tutorial 3. 小游戏demo:https://github.com/goplus/spx/tree/main/tutorial 4. win10搭建go+/goplus:https://zhuanlan.zhihu.com/p/396398360 5. 示例代码解析 https://zhuanlan.zhihu.com/p/399683614 6. Go+1.0 基本语法及特点:https://github.com/goplus/gop 7. 网页和手机都可以点击体验 Go+ 哦:https://play.goplus.org/这篇关于ubuntu 之 go+/goplus 安装的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-15SendGrid 的 Go 客户端库怎么实现同时向多个邮箱发送邮件?-icode9专业技术文章分享
- 2024-11-15SendGrid 的 Go 客户端库怎么设置header 和 标签tag 呢?-icode9专业技术文章分享
- 2024-11-12Cargo deny安装指路
- 2024-11-02MongoDB项目实战:从入门到初级应用
- 2024-11-01随时随地一键转录,Google Cloud 新模型 Chirp 2 让语音识别更上一层楼
- 2024-10-25Google Cloud动手实验详解:如何在Cloud Run上开发无服务器应用
- 2024-10-24AI ?先驱齐聚 BAAI 2024,发布大规模语言、多模态、具身、生物计算以及 FlagOpen 2.0 等 AI 模型创新成果。
- 2024-10-20goland工具下,如修改一个项目的标准库SDK的版本-icode9专业技术文章分享
- 2024-10-17Go学习:初学者的简单教程
- 2024-10-17Go学习:新手入门完全指南