首页 > 其他分享 >Go - installation

Go - installation

时间:2023-07-31 18:44:13浏览次数:40  
标签:profile installation go usr Go local

Go installation

Select the tab for your computer's operating system below, then follow its installation instructions.

 
  1. Remove any previous Go installation by deleting the /usr/local/go folder (if it exists), then extract the archive you just downloaded into /usr/local, creating a fresh Go tree in /usr/local/go:
          $ rm -rf /usr/local/go && tar -C /usr/local -xzf go1.20.6.linux-amd64.tar.gz
          
  • (You may need to run the command as root or through sudo).

    Do not untar the archive into an existing /usr/local/go tree. This is known to produce broken Go installations.

  • 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.

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

You're all set!

标签:profile,installation,go,usr,Go,local
From: https://www.cnblogs.com/zhangzhihui/p/17594206.html

相关文章

  • Golang 接收Get、Post请求
    Get1、接收funcGetGet(whttp.ResponseWriter,r*http.Request){deferfunc(){r.Body.Close()ifr:=recover();r!=nil{stackBytes:=debug.Stack()fmt.Println("r",r,"Error",stackByte......
  • django orm 使用关联字段查询和更新
    关联字段查询_exam_fields=['add_datetime','times','start_date','end_date','uuid','name','img','duration','bx_duration']_alias_......
  • IDEA,Pycharm,Goland,Webstorm 最新发布2023.2版本,亲测好用!
    期待已久的IntelliJIDEA2023.2终于正式发布了,同时发布的还有Pycharm,Goland,Webstorm等。具体的改变相信大家已经提前有所了解的了,我迫不及待的就下载体验了下,UI变好看了,使用起来感觉更流畅,好用推荐!IDEA2023.2最新版激活成功如下GoLand2023.2最新版激活成功如下......
  • Go开发环境配置保姆式教程,VScode
    需求:Go开发环境配置以及VScode插件安装 1.1安装go1.20.6.windows-amd64.msi 下载地址:https://golang.google.cn/dl/ (1)  选择Windows版本go1.20.6.windows-amd64.msi  (2)下载完成后,双击.msi进行安装   (3)点击next  (4)  勾选同意,点击n......
  • django数据库不存在就插入存在就修改
    django数据库不存在就插入存在就修改需求django插入数据到数据库时,需要根据条件判断,如果不存在,就插入一条新数据,如果已经存在,则修改数据的字段解决办法函数使用该函数可以完成上述功能模型.objects.update_or_create()例如Student.objects.update_or_create参数defaults......
  • url函数的使用,无名分组和有名分组,反向解析,django2中5种转换器,路由分发,伪静态的概
    url函数的使用(支持正则表达式)#django1中使用的是urlurl('test',views.test),url函数的第一个参数是支持正则表达式的如果匹配到一个路由,就不在往下匹配,直接执行路由对应的视图函数#http://127.0.0.1:8000/test/是django默认设置的,django会先拿着test去匹配,如果匹配不......
  • mongodb索引大小查看
    查看数据库中索引总大小>db.stats(){"db":"abce","collections":258,"views":0,"objects":3869336,"avgObjSize":23033.87034752216,"dataSi......
  • mongodb去重统计
    MongoDB去重统计在MongoDB中,去重统计是一种常见的需求。如果我们有一个存储大量数据的集合,我们可能需要统计其中不重复的元素的数量。幸运的是,MongoDB提供了一些强大的聚合操作符和方法来实现这个目标。使用distinct()方法进行去重统计MongoDB的distinct()方法可以用于从集合中......
  • mongodb模糊查询性能
    MongoDB模糊查询性能优化指南作为一名经验丰富的开发者,我将为你详细介绍如何优化MongoDB的模糊查询性能。以下是整个过程的步骤概览:步骤内容1创建合适的索引2使用合适的正则表达式3避免使用无效的模糊查询4使用投影来减少返回的数据量5使用分页来限制......
  • mongodb和mysql的优缺点
    MongoDB和MySQL的优缺点对比引言在现代软件开发中,数据库是必不可少的一部分。MongoDB和MySQL是两种常见的数据库管理系统(DBMS)。本文将对它们的优缺点进行对比,帮助读者选择适合自己需要的数据库系统。MongoDBMongoDB是一个基于文档的NoSQL数据库,使用JSON格式存储数据。它的特点......