You are here

Problems installing Rosetta in linux 32 bits

4 posts / 0 new
Last post
Problems installing Rosetta in linux 32 bits
#1

Hi,
I am trying to install PyRosetta v2.0 (beta) in Ubuntu Linux 32 bits. I installed python 2.5 and manage to put it as default (2.7 was default in Ubuntu). But, when I tried to import PyRosetta ("from rosetta import" * or "import rosetta") I got the following answer:

Traceback (most recent call last):
File "", line 1, in
File "rosetta/_init_.py", line 11, in
import utility
File "rosetta/utility/_init_.py", line 1, in
from _utility_all_at_once import *
ImportError: libpython2.6.so.1.0: cannot open shared object file: No such file or directory

I installed also python 2.6.7, and I swichted between difefrent pythons as default, but I got always the same answer. What I am doing wrong? Maybe I should uninstalled everything and try it with PyRosetta v1.1??

Post Situation: 
Mon, 2012-04-02 13:29
Nuria

It look like python2.6 dynamic lib is not installed (libpython2.6.so.*). Please double check your Python2.6 install and make sure that shared lib is there. If you building python from source make sure to enable building shared lib (it disable by default).

Mon, 2012-04-02 22:36
Sergey

libpython2.6.so.1.0 should be part of the libpython2.6 package on Ubuntu (Found with the "search the contents of packages" feature of http://packages.ubuntu.com/ ). If it's not already installed, you can probably install it with a command like:

apt-get install libpython2.6

Tue, 2012-04-03 09:46
rmoretti

Just cp lipython2.7.so* as libpython2.6.so*. It's working for me.

Fri, 2013-05-10 19:04
Albert