红联Linux门户
Linux帮助

Ubuntu 16.04安装CodeLite IDE

发布时间:2016-10-02 15:56:18来源:topspeedsnail.com作者:斗大的熊猫
CodeLite(http://codelite.org/)是开源的跨平台的 C/C++、PHP 和 Node.js 集成开发环境,支持Linux、Windows和Mac OS X系统。
CodeLite源代码:https://github.com/eranif/codelite
 
CodeLite is an open source, free, cross platform IDE specialized in C, C++, PHP and JavaScript (mainly for backend developers using Node.js) programming languages which runs best on all major Platforms ( OSX, Windows and Linux )
 
Ubuntu安装CodeLite IDE
$ sudo apt-get install codelite
 
默认仓库中的CodeLite不是最新版本,安装的插件也不全。如果想安装最新版本,可以通过添加官方源安装:
$ sudo sh -c 'echo "deb http://repos.codelite.org/ubuntu/ xenial universe" >> /etc/apt/sources.list.d/codelite.list'   # 如果系统为Ubuntu 14.04 把xenial改为trusty
$ sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc
$ sudo apt-get update
$ sudo apt-get install codelite wxcrafter
 
wxCrafter是一个功能全面的快速应用开发(RAD)工具,可以做为一个CodeLite插件,也可做为应用程序独立运行。
Ubuntu 16.04安装CodeLite IDE
Ubuntu 16.04安装CodeLite IDE
Ubuntu 16.04安装CodeLite IDE
 
本文永久更新地址:http://www.linuxdiyf.com/linux/24685.html