Joon's blog

Python | openSUSE | LaTeX

Archive for the ‘how-to’ Category

openSUSE 11.4: How to sync Google Calendar and Contact with Kontact using Akonadi

with 2 comments

The following post: setting-up-google-calendar-with-kontact-or-korganiser-using-akonadi has very nice instruction with screenshots. Only package name and proxy settings are different in openSUSE.

  • Open up Akonadi Configuration, and click on Add… if you don’t see Akonadi Google Calendar Resourse, then you have to restart akonadiserver.
  • If you see that, then open korganizer and (this is pretty much copied from the above post)
  1. Right Click on Calendars and click on Add Calendar …
  2. Select Akonadi
  3. Click on Manage Calendar Sources
  4. Click add
  5. Select Akonadi Google Calendar Resource
  6. Enter your email and password and select ok
  • If akondadi google account shows “invalid password” right after you inputted the id and password, then go to Personal SettingsNetwork SettingsProxy and check Connect to the Internet directly. Then the login should work.
  • After this, adding a new address book with  Akonadi Google Contacts Resourse is straightforward.

Written by joon

June 1st, 2011 at 6:04 pm

openSUSE 11.4: Installation of IPython 0.11.dev

without comments

Successful with openSUSE 11.4 x64 and IPython 0.11.dev

1. download

git clone git://github.com/ipython/ipython.git

2. dependencies

libzmq0
pyzmq

IPython 0.11.dev needs newer version of pyzmq than the one in the openSUSE repos.
You can install it with easy_install:

sudo easy_install pyzmq

If it fails because of libzmq0 version, then force the pyzmq version to be 2.0.10.1:

sudo easy_install pyzmq==2.0.10.1

3. compile & Install

sudo python setup.py install

Written by joon

May 12th, 2011 at 4:48 pm