go開發ide之liteide的安裝
LiteIDE是國人開發的一款開源免費的Go語言程式開發IDE,本文紀錄LiteIDE在Mac上的安裝過程。
LiteIDE安裝環境要求
首先,要安裝Go語言及工具。安裝檔案及方法參見golang官網的這個頁面。需要說明的是,官方的安裝教程預設是安裝到/usr/local/go目錄,此時不需要額外設定GOROOT環境變數(具體原因參考這篇文章),只需要將path新增到.bash_profile:
export PATH=$PATH:/usr/local/go/bin
根據官方說明:
The Go binary distributions assume they will be installed in /usr/local/go (or c:\Go under Windows), but it is possible to install the Go tools to a different location. In this case you must set the GOROOT environment variable to point to the directory in which it was installed.
如果不是安裝在這個預設目錄(/usr/local/go),需要另外設定GOROOT環境變數並新增PATH變數。比如把go安裝到$HOME下,需要在$HOME/.bash_profile新增以下2行:
export GOROOT=$HOME/go
export PATH=$PATH:$GOROOT/bin
安裝LiteIDE
二進位制檔案安裝
首先從http://sourceforge.net/projects/liteide/files 下載二進位制檔案
windows
下載包檔案並解壓到C:/
Linux && MacOSX
下載包檔案並解壓到/usr/local或者$HOME
原始檔安裝
首先要安裝qt
可以從這裡https://www.qt.io/download/ 下載二進位制檔案安裝,或者使用homebrew安裝:
$ brew update
$ brew install qt
安裝過程終端輸出以下資訊:
==> Downloading https://homebrew.bintray.com/bottles/qt-4.8.7_2.el_capitan.bottl
######################################################################## 100.0%
==> Pouring qt-4.8.7_2.el_capitan.bottle.tar.gz
==> Caveats
We agreed to the Qt opensource license for you.
If this is unacceptable you should uninstall.
Qt Designer no longer picks up changes to the QT_PLUGIN_PATH environment
variable as it was tweaked to search for plug-ins provided by formulae in
/usr/local/lib/qt4/plugins
.app bundles were installed.
Run `brew linkapps qt` to symlink these to /Applications.
==> Summary
? /usr/local/Cellar/qt/4.8.7_2: 2,815 files, 113.0M
接下來編譯安裝LiteIDE
依次執行以下命令:
$ git clone https://github.com/visualfc/liteide.git
$ export QTDIR=$HOME/QtSDK/Desktop/Qt/484/gcc #If QT is installed with brew, input: export QTDIR=/usr/local/Cellar/qt/4.8.7_2
$ cd liteide/build
$ ./update_pkg.sh
$ ./build_osx.sh
$ ./deploy_osx_qt4.sh
執行以上最後一行輸出:
deploy liteide/LiteIDE.app
QTDIR=/usr/local/Cellar/qt/4.8.7_2
GOROOT=
BUILD_ROOT=/Users/chenxin/Documents/Work/Workspace/liteide/build
LITEIDE_ROOT=/Users/chenxin/Documents/Work/Workspace/liteide/build/../liteidex
接下來就可以啟動LiteIDE了:
$ cd ..
$ cd liteidex/liteide/bin
啟動LiteIDE.app即可
參考
相關文章
- Java開頭(開發環境配置及IDE的安裝)Java開發環境IDE
- Go 語言開發工具 LiteIDE X35 釋出,支援 Go modulesGoIDE
- Go開發者之如何破解安裝GoLand編譯器?GoLand編譯
- [Go語言整合開發環境之GoLand安裝使用]開發環境GoLand
- Mac系統Go開發環境的安裝MacGo開發環境
- python 開發工具IDE 之 thonnyPythonIDE
- 1.go環境安裝,IDE配置以及依賴管理GoIDE
- Arduino IDE Mac安裝UIIDEMac
- 我為什麼會選擇Vim來開發Go專案及Vim IDE安裝配置和操作GoIDE
- Python開發最牛逼的IDE:Pycharm的安裝與使用!適合新手!PythonIDEPyCharm
- 在Mac book安裝vscode開發利器ide除錯mysql mhaMacVSCodeIDE除錯MySql
- 開心檔之Go 語言環境安裝Go
- Go 武林外傳 - 工欲善必先利其器之 LiteIDEGoIDE
- 安裝 Laravel-ide-helperLaravelIDE
- Go開發IDE全覽:GoLand vs VSCode全面解析IDEGoLandVSCode
- 快速安裝laravel框架的IDE提示工具Laravel框架IDE
- Kali 安裝 WingPro7 IDEIDE
- golang在win10安裝、環境配置 和 goland(IDE開發golang配置)GolangWin10GoLandIDE
- JetBrains GoLand 2024.2 (macOS, Linux, Windows) - 為 Go 開發者打造的完整 IDEAIGoLandMacLinuxWindowsIDE
- Python IDE ——Anaconda+PyCharm的安裝與配置PythonIDEPyCharm
- Python開發IDEPythonIDE
- 麒麟系統開發筆記(六):安裝QtCreator開發IDE中的中文輸入環境Fcitx輸入法筆記QTIDE
- 安裝 goGo
- GoLand 2023:為Go開發者打造的智慧IDE mac/win啟用版GoLandIDEMac
- Go的安裝和使用Go
- go安裝playwright-goGo
- go: ubuntu安裝go 1.23.3GoUbuntu
- go學習--->安裝goGo
- go語言安卓開發Go安卓
- Flutter外掛開發之APK自動安裝FlutterAPK
- 豬行天下之Python基礎——1.3 Python開發IDE之PyCharmPythonIDEPyCharm
- 從零開始學習 Go ——安裝Go
- Golang學習筆記-IDE安裝指南Golang筆記IDE
- 在 phpstorm 下安裝 Laravel-ide-helperPHPORMLaravelIDE
- Liunx 安裝 GoGo
- Laravel 入門篇之開發環境 Homestead 的安裝配置Laravel開發環境
- 整合開發環境(IDE)的用途?開發環境IDE
- 開心檔之Go 併發Go