溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶(hù)服務(wù)條款》

Linux下怎么安裝goland

發(fā)布時(shí)間:2022-01-29 16:37:22 來(lái)源:億速云 閱讀:442 作者:小新 欄目:開(kāi)發(fā)技術(shù)

這篇文章主要介紹Linux下怎么安裝goland,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

1 下載

下載GoLand Linux下怎么安裝goland

2 安裝Goland

1.解壓并重命名目錄
~$ tar -zxvf goland-2019.1.3.tar.gz  -C /usr/local
~$ sudo mv /usr/local/GoLand-2019.1.3/ /usr/local/GoLand
~$ ll /usr/local/
total 48
drwxr-xr-x 12 root root 4096 7月  23 17:08 ./
drwxr-xr-x 10 root root 4096 2月  10 08:12 ../
drwxr-xr-x  2 root root 4096 2月  10 08:12 bin/
drwxr-xr-x  2 root root 4096 2月  10 08:12 etc/
drwxr-xr-x  2 root root 4096 2月  10 08:12 games/
drwxr-xr-x 10 root root 4096 7月   9 05:29 go/
drwxr-xr-x  8 root root 4096 7月  23 17:06 GoLand/
drwxr-xr-x  2 root root 4096 2月  10 08:12 include/
drwxr-xr-x  3 root root 4096 6月  30 00:32 lib/
lrwxrwxrwx  1 root root    9 6月  29 23:43 man -> share/man/
drwxr-xr-x  2 root root 4096 2月  10 08:12 sbin/
drwxr-xr-x  6 root root 4096 2月  10 08:15 share/
drwxr-xr-x  2 root root 4096 2月  10 08:12 src/
1234567891011121314151617
配置為全局啟動(dòng)

將GoLand的啟動(dòng)腳本goland.sh加入用戶(hù)的/usr/bin/目錄下,可以在任意位置執(zhí)行g(shù)oland.sh啟動(dòng)GoLand IDE。

~$ cd /usr/local/GoLand/bin/
~$ sudo ln -s $(pwd)/goland.sh /usr/bin/goland.sh
12
配置啟動(dòng)命令別名并獨(dú)立運(yùn)行

按照步驟2中的方式啟動(dòng)GoLand之后,必須保持啟動(dòng)GoLand的terminal保持active,否則GoLand也會(huì)隨之退出。因此,通過(guò)重命名alias的方式簡(jiǎn)化啟動(dòng)命令,并獨(dú)立運(yùn)行(不隨terminal關(guān)閉而退出)。 打開(kāi).bashrc并定義別名:

~$ vim .bashrc
...
alias goland='nohup goland.sh & >/dev/null'
123

然后重新打開(kāi)一個(gè)terminal,直接輸入goland回車(chē)即可啟動(dòng)。

以上是“Linux下怎么安裝goland”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI