如何在Fedora上安装Go(Golang)33/32/31/30
时间:2020-02-23 14:33:15 来源:igfitidea点击:
本教程将在Fedora 33/32/31/30上安装Go(Golang)。
Go是一种编程语言,旨在缓解可靠,简单,高效的应用程序的开发。
它是谷歌工程的原始产品。
在本教程中,我们将从官方上游存储库中安装Fedora 33/32/31/30。
为确保存储库是最新的,更新系统。
sudo dnf -y update
确认已启动后,使用下面的命令安装在Fedora 33/32/31/30上。
sudo dnf -y install go
在Fedora 33/32/31/30上测试Go安装
既然我们已经安装在Fedora上,让我们试验以确保它正在运行。
首先创建工作空间目录。
mkdir $HOME/go
其中创建一个目录以托管测试GO应用程序。
cd $HOME/go mkdir -p src/helloworld && cd src/helloworld
创建一个名为的文件 helloworld.go
看起来像:
package main import "fmt" func main() { fmt.Printf("hello, world\n") }
建立应用程序 go tool
:
cd $HOME/go/src/helloworld go build
这将生成一个名为的新文件 helloworld
。
$ls helloworld helloworld.go
通过运行执行文件。
$./helloworld hello, world
要将二进制文件安装到Workspace的Bin目录中,请使用:
$go install $ls ~/go/bin/ helloworld
要删除它使用:
go clean -i
我们可以添加DIARADION目录 $PATH
。
$vim ~/.bashrc export PATH="$PATH:~/go/bin/" export GOPATH="~/go"