红联Linux门户
Linux帮助

在Windows/Linux/Mac OS X下安装LiteIDE的方法

发布时间:2016-09-04 09:31:55来源:linux网站作者:liteide
先决条件
使用LiteIDE开发golang需要安装Go语言开发环境。
 
Go
先要安装Go语言,详细情况请参看http://golang.org/doc/install.html. 在安装LiteIDE之前一定要先安装Go语言。
 
安装二进制文件
http://sourceforge.net/projects/liteide/
在Windows/Linux/Mac OS X下安装LiteIDE的方法
 
Windows
下载压缩包并解压至c:\盘
 
Linux and MacOSX
下载压缩包并解压到/usr/local或者是$HOME
 
从源代码编译
LiteIDE源码位于https://github.com/visualfc/liteide上。需要使用Qt4/Qt5来编译源代码,Qt库可以从https://qt-project.org/downloads上获取。Mac OS X用户可以不从源代码编译Qt,直接在终端中运行brew update && brew install qt,节省大量时间。下面的编译以Qt4为例。
 
Windows
> git clone https://github.com/visualfc/liteide.git
> set QTDIR=c:\Qt\Qt484
> set MINGWDIR=c:\Qt\MinGW
> cd liteide/build
> update_pkg.cmd
> build_mingw.cmd
> deploy_qt4.8_webkit.cmd
 
Linux
$ git clone https://github.com/visualfc/liteide.git
$ export QTDIR=$HOME/QtSDK/Desktop/Qt/484/gcc
$ cd liteide/build
$ ./update_pkg.sh
$ ./build_linux.sh
$ ./deploy_linux_qt4.8_webkit.sh
 
Mac OS X
$ git clone https://github.com/visualfc/liteide.git
$ export QTDIR=$HOME/QtSDK/Desktop/Qt/484/gcc #如果Qt是通过brew安装,输入: export QTDIR=/usr/local/Cellar/qt/4.8.6
$ cd liteide/build
$ ./update_pkg.sh
$ ./build_osx.sh
$ ./deploy_osx_qt4.sh
 
根据自己的环境一定要设置QTDIR(在Windows上还需要设置MINGWDIR)
 
本文永久更新地址:http://www.linuxdiyf.com/linux/23868.html