ubuntu 安装 codelite

http://www.linuxidc.com/Linux/2013-06/85332.htm

Ubuntu 12.04下为codelite增添更新源

1、获取codelite的公钥

sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc

2、查看自己系统信息(如何知道所linux使用的是哪个发行版)

sudo lsb_release -a

例如:

Distributor ID:    Ubuntu

Description:      Ubuntu 12.04.2 LTS

Release:          12.04

Codename:        precise

3、根据上面的Codename,选择更新源

sudo apt-add-repository "deb http://repos.codelite.org/ubuntu/ precise universe"

sudo apt-get update

我的相关命令:

sudo apt-key adv --fetch-keys http://repos.codelite.org/CodeLite.asc
Executing: gpg --ignore-time-conflict --no-options --no-default-keyring --secret-keyring /tmp/tmp.7UjjuEvlkT --trustdb-name /etc/apt/trustdb.gpg --keyring /etc/apt/trusted.gpg --primary-keyring /etc/apt/trusted.gpg --fetch-keys http://repos.codelite.org/CodeLite.asc
gpg: key 1AC82609: public key "David Hart (codelite key) <david@codelite.co.uk>" imported
gpg: Total number processed: 1
gpg:               imported: 1  (RSA: 1)
yingc@yingc:~/work/public/solution$ sudo lsb_release -a
No LSB modules are available.
Distributor ID:    Ubuntu
Description:    Ubuntu 12.04 LTS
Release:    12.04
Codename:    precise
yingc@yingc:~/work/public/solution$ sudo apt-add-repository "deb http://repos.codelite.org/ubuntu/ precise universe"
yingc@yingc:~/work/public/solution$ sudo apt-get install codelite

无法下载 http://security.ubuntu.com/ubuntu/pool/main/q/qt4-x11/qt4-qmake_4.8.1-0ubuntu4.4_i386.deb  404  Not Found [IP: 91.189.91.14 80]
E: 有几个软件包无法下载,您可以运行 apt-get update 或者加上 --fix-missing 的选项再试试?
yingc@yingc:~/work/public/solution$ sudo apt-get install codelite --fix-missing

  • You then need update your repositories. In synaptic, click the Reload button. If you're doing things by hand, do:
 sudo apt-get update
  • You should now be able to install CodeLite in the normal way through synaptic, or by doing:
 sudo apt-get install codelite wxcrafter

http://codelite.org/LiteEditor/Repositories#toc1

Codelite解决中文乱码

Setting - Editor - Misc - File font encoding,选择Windows 936编码

codelite编译显示中文字符为乱码

启用C99,并在控制台显示中文: Settings, Build Settings, gnc gcc, Switchs,在Source选项后面增加" -std=c99 -fexec-charset=GBK ",添加后,Source switch看起来是这样:
-c -std=c99 -fexec-charset=GBK



codelite自动提示:
Setting-Tags Option-general-triggering-automatic word completion
原文地址:https://www.cnblogs.com/jingzhishen/p/3499990.html