Hi Robert/team,
I had to do a clean install of ubuntu-lucid due to careless changes I have made to the system python files. I could no longer use gtk.gtkgl which was needed. So, trying to get a working sfepy from clean ubuntu, I came across python-setuptools which is needed (used apt-get), and sympy 6.7 which needs to be built and installed locally just like scikits. I now have a correctly running sfepy again :-) Might help someone with less resolve to get sfepy working :-) Regards, -osman
Hi Osman,
thanks for sharing this. Can you format a small text describing the which packages are needed for your platform? I will add it to the documentation.
Thanks, r.
On 08/15/10 17:42, osman wrote:
Hi Robert/team,
I had to do a clean install of ubuntu-lucid due to careless changes I have made to the system python files. I could no longer use gtk.gtkgl which was needed. So, trying to get a working sfepy from clean ubuntu, I came across python-setuptools which is needed (used apt-get), and sympy 6.7 which needs to be built and installed locally just like scikits. I now have a correctly running sfepy again :-) Might help someone with less resolve to get sfepy working :-) Regards, -osman
On Tue, 2010-08-17 at 09:41 +0200, Robert Cimrman wrote:
Hi Osman,
thanks for sharing this. Can you format a small text describing the which packages are needed for your platform? I will add it to the documentation.
Thanks, r.
Installation on Ubuntu (tested on Jaunty Jackalope 9.04 and Lucid Lynx 10.04)
Prerequisites
First, you have to install the dependencies packages:
sudo aptitude install python-scipy python-matplotlib python-tables python-pyparsing libsuitesparse-dev python-setuptools
Then download and install the umfpack scikits in some local dir. In the following example it will be installed in $HOME/local:
svn checkout http://svn.scipy.org/svn/scikits/trunk/umfpack cd umfpack mkdir -p ${HOME}/local/lib/python2.6/site-packages python setup.py install --prefix=${HOME}/local
Add to your .bashrc the line:
export PYTHONPATH="${HOME}/local" then re-open a terminal and if the scikits was installed correctly importing scikits.umfpack in python should give no error:
$ python
import scikits.umfpack
Next Download sympy 6.7 or later. Extract the contents.
cd sympy-0.6.7
python setup.py install --prefix=${HOME}/local
Installing SfePy ... no change
Thanks, it's in! See [1].
cheers, r. [1] http://docs.sfepy.org/doc-devel/introduction.html
On 08/21/10 23:09, osman wrote:
On Tue, 2010-08-17 at 09:41 +0200, Robert Cimrman wrote:
Hi Osman,
thanks for sharing this. Can you format a small text describing the which packages are needed for your platform? I will add it to the documentation.
Thanks, r.
Installation on Ubuntu (tested on Jaunty Jackalope 9.04 and Lucid Lynx 10.04)
Prerequisites
First, you have to install the dependencies packages:
sudo aptitude install python-scipy python-matplotlib python-tables python-pyparsing libsuitesparse-dev python-setuptools
Then download and install the umfpack scikits in some local dir. In the following example it will be installed in $HOME/local:
svn checkout http://svn.scipy.org/svn/scikits/trunk/umfpack cd umfpack mkdir -p ${HOME}/local/lib/python2.6/site-packages python setup.py install --prefix=${HOME}/local
Add to your .bashrc the line:
export PYTHONPATH="${HOME}/local" then re-open a terminal and if the scikits was installed correctly importing scikits.umfpack in python should give no error:
$ python
import scikits.umfpack
Next Download sympy 6.7 or later. Extract the contents.
cd sympy-0.6.7
python setup.py install --prefix=${HOME}/local
Installing SfePy ... no change
participants (2)
-
osman
-
Robert Cimrman