ubuntu22.04 isntalls the golang runtime environment

1.download the golang installation package

wget https://gomirrors.org/dl/go/go1.19.2.linux-amd64.tar.gz

2.extract package

sudo tar -C /usr/local -xzf go1.19.2.linux-amd64.tar.gz

3.Establish a soft connection

sudo ln -s /usr/local/go/bin/* /usr/bin/

4. install vim

sudo apt-get install vim-gtk

5.set environment variables

sudo vim ~/.bashrc

# Insert the following 2 lines at the end of the file to save the exit

#press " i " turn on insert mode

#press ESC to enter :wq to save

export GOPATH="$HOME/go"
export PATH="$PATH:/usr/local/go/bin:$GOPATH/bin"

6.Make the configuration file effective

source ~/.bashrc

7.Test whether the installation is successful

go version

8.View environment variabl

go evn

9. Generate demo program and compile and run it

cd home

 #create a src directory

sudo mkdir src

 #create a helloworld.go file

sudo vim helloworld.go

 #code

package main
import "fmt"
func main() {
    fmt.Printf("hello world\n")
}

 #return to the previous directory

cd ..

 #set src directory permission

sudo chmod -R 777 src
cd src

#intialization

go mod init src
go mod tidy

#view all files in the directory

ls -al

 #compile helloworld.go

go build helloworld.go
./helloworld

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值