zoukankan      html  css  js  c++  java
  • 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
  • 相关阅读:
    C语言进阶—— 单引号和双引号14
    C语言进阶——注释符号12
    C语言进阶——enum, sizeof, typedef 分析11
    算法01
    vim+软件安装——06
    if(xx)和(a==b) 关于数据类型的转换
    浏览器的渲染机制,白屏和FOUC
    BFC的概念和解决外边距合并
    CSS有哪几种引入方式
    块级元素和行内元素的区别,常见的块级元素和行内元素有哪些
  • 原文地址:https://www.cnblogs.com/jingzhishen/p/3499990.html
Copyright © 2011-2022 走看看