CentOS7 安裝go語言

2021-10-04 18:42:18 字數 727 閱讀 2164

如果餓了就吃,困了就睡,渴了就喝,人生就太無趣了

更新時間 : 2023年04月05日

whereis go

whereis golang

whereis gocode #如果需要的話

rm -rf ***//找到後刪除

tar -c /usr/local -xzf go1.11.linux-amd64.tar.gz

解壓後在目錄 /usr/local/go中

本人在當前目錄設定的gopat**件夾,資料夾名稱隨意,我的是gopath

mkdir gopath

vim /etc/profile

在最後一行加入 插入

export goroot=/usr/local/go 

export gopath=/root/gopath #我的gopath路徑是這個,這個路徑視情況而定

export path=$path:$goroot/bin:$gopath/bin

source /etc/profile

go version

CentOS 7 安裝 go 語言開發環境

參考 官方文件 如何使用go程式設計 安裝方法參見 centos 7 桌面系統安裝 vscode 編輯器 func main go 語言的外掛程式主要在 github 上,安裝 git 客戶端是首要工作 sudo yum install git 可選 vscode 會報告 git 版本太低,下面的方...

centos7 r語言安裝 centOS7安裝R

在安裝時發現一般教程中說的 yum install r 這個命令不管用了啊,然後去官網了解了一波 發現官網上表示r語言已經屬於epel倉庫管理了。1.安裝epel倉庫 yum install epel release 隨後報錯 這是由於centos7自帶的python版本為2.7,因此要將該檔案的p...

Centos 7 搭建Go環境

1.1 linux搭建go環境 1.ssh遠端登入linux伺服器,可選用iterm xshell ssh root ip2.建議配置好阿里雲yum源 epel源 安裝git yum install gitcd opt wget4.解壓縮go原始碼包,確認當前linux系統版本是32位還是64位,再...