成功在Ubuntu下安装pidgin


gaim改成pidgin了

我这里是用编译安装方式的,deb包没有找到

1.下载源码包

http://pidgin.im/pidgin/download/source/

2. 解压 (x的含义:解压 v的含义:bz包 f就不清楚了)
tar xvf pidgin-2.0.2.tar.bz2

3. 安装SSL(MSN支持)
sudo apt-get install libnss-dev

4. sudo apt-get install libglib2.0-dev libgtk2.0-dev libxml2-dev libnss3-dev gettext html2text (一次把这些都安装了)

5. ./configure
一般不会出错的,如果出错就看看下面的FAQ了

6. make

7. make install

FAQ:

error1:Tired to build libpurple. If it is installed
on your system, ensure that it is in your path. If it is not, install
GNU gettext to continue.

resolve method:sudo apt-get install gettext

error2: You must have the GLib 2.0 development headers installed to build.

resolve method:sudo apt-get install libglib2.0-dev

error3: You must have the GTK+ 2.0 development headers installed to compile Pidgin.
If you only want to build Finch then specify –disable-gtkui when running configure.

resolve method: sudo aptitude install libgtk2.0-dev

error4:You must have libxml2 >= 2.6.0 development headers installed to build.

resolve method:sudo apt-get install libxml2-dev

相关内容