Joon's blog

Python | openSUSE | LaTeX

Archive for the ‘install’ tag

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

openSUSE 11.4: Installation of Scribes

with 5 comments

http://scribes.sourceforge.net

1. Dependencies

  • gnome-common
  • gnome-doc-utils-devel
  • python-gnome-extras

(Of course, install other dependencies of those libraries as well.)
 

2. Compile & Install

bzr branch lp:scribes
cd scribes

chmod +x autogen.sh   # this might be necessary

./autogen.sh
make
sudo make install

Successful with openSUSE 11.4 and Scribes version 0.4-dev-build954

Written by joon

March 23rd, 2011 at 10:40 pm