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即可
參考
相關文章
- 安裝liteIDE on macIDEMac
- Java開頭(開發環境配置及IDE的安裝)Java開發環境IDE
- Go 語言開發工具 LiteIDE X35 釋出,支援 Go modulesGoIDE
- LiteIDE X31 釋出,Go 語言開發工具IDEGo
- LiteIDE X32.1 釋出,Go 語言開發工具IDEGo
- LiteIDE X33 釋出,Go 語言開發工具IDEGo
- LiteIDE X32 釋出,Go 語言開發工具IDEGo
- LiteIDE X32.2 釋出,Go 語言開發工具IDEGo
- Go語言開發工具 LiteIDE X27 釋出GoIDE
- Go語言開發工具 LiteIDE X25.1 釋出GoIDE
- qnx開發的IDE安裝問題-解決解除安裝後不能重灌IDE
- [Go語言整合開發環境之GoLand安裝使用]開發環境GoLand
- LiteIDE X30.3 釋出,Go 語言開發工具IDEGo
- LiteIDE X33.1 釋出,Go 語言開發工具IDEGo
- Mac系統Go開發環境的安裝MacGo開發環境
- 搭建Go開發及除錯環境(LiteIDE + GoClipse) -- Windows篇Go除錯IDEWindows
- Mac 安裝 GO語言開發環境MacGo開發環境
- 開心檔之Go 語言環境安裝Go
- 我為什麼會選擇Vim來開發Go專案及Vim IDE安裝配置和操作GoIDE
- 1.go環境安裝,IDE配置以及依賴管理GoIDE
- Win10下安裝Go開發環境Win10Go開發環境
- python 開發工具IDE 之 thonnyPythonIDE
- Go語言 安裝、Notepad++配置Go 開發環境Go開發環境
- Arduino IDE Mac安裝UIIDEMac
- Python開發最牛逼的IDE:Pycharm的安裝與使用!適合新手!PythonIDEPyCharm
- 在Mac book安裝vscode開發利器ide除錯mysql mhaMacVSCodeIDE除錯MySql
- Arduino可穿戴開發入門教程Windows平臺下安裝Arduino IDEUIWindowsIDE
- Go 武林外傳 - 工欲善必先利其器之 LiteIDEGoIDE
- 安裝 Laravel-ide-helperLaravelIDE
- IDE介面硬碟安裝方法IDE硬碟
- Go開發IDE全覽:GoLand vs VSCode全面解析IDEGoLandVSCode
- 安裝 goGo
- golang在win10安裝、環境配置 和 goland(IDE開發golang配置)GolangWin10GoLandIDE
- 快速安裝laravel框架的IDE提示工具Laravel框架IDE
- 開心檔之Go 併發Go
- go學習--->安裝goGo
- Flutter外掛開發之APK自動安裝FlutterAPK
- Go的安裝和使用Go