Re: [Numpy-discussion] install without admin rights

2008-10-06 Thread David Cournapeau
Matthieu Brucher wrote: > Hi again, > > That's because Python 2.3 is not supported by numpy 1.2 anymore (see > the release notes) :| > Try installing a Python 2.5 locally, as with numpy. > Alternatively, you can install numpy 1.1.x (numpy 1.1* still support python 2.3). cheers, David

Re: [Numpy-discussion] install without admin rights

2008-10-06 Thread Matthieu Brucher
Hi again, That's because Python 2.3 is not supported by numpy 1.2 anymore (see the release notes) :| Try installing a Python 2.5 locally, as with numpy. Matthieu 2008/10/6 Roeland Huys <[EMAIL PROTECTED]>: > Thanks! > > Unfortunately, I got following error: > import numpy > Traceback (most

Re: [Numpy-discussion] install without admin rights

2008-10-06 Thread Roeland Huys
Thanks! Unfortunately, I got following error: >>> import numpy Traceback (most recent call last): File "", line 1, in ? File "/imec/other/neuray2/lib64/python2.3/site-packages/numpy/__init__.py", line 125, in ? import add_newdocs File "/imec/other/neuray2/lib64/python2.3/site-packages/n

Re: [Numpy-discussion] install without admin rights

2008-10-06 Thread Stéfan van der Walt
Hi Roeland 2008/10/6 Roeland Huys <[EMAIL PROTECTED]>: > tar -xvzf numpy-1.2.0.tar.gz [OK] > cd numpy-1.2.0 > python setup.py build [OK] python setup.py install --prefix=${HOME} > set PYTHONPATH=$HOME/pythonlib export PYTHONPATH=${HOME}/lib/python2.5/site-packages Cheers Stéfan ___

Re: [Numpy-discussion] install without admin rights

2008-10-06 Thread Matthieu Brucher
python setup.py install --prefix=$HOME/local/lib set PYTHONPATH=$HOME/local/lib/python2.5/site-packages and you're good to go. This is how I install everything and it's been working for several years now ;) Matthieu 2008/10/6 Roeland Huys <[EMAIL PROTECTED]>: > > Hi, > > I am very interested in

[Numpy-discussion] install without admin rights

2008-10-06 Thread Roeland Huys
Hi, I am very interested in my work to switch from Matlab to Numpy. However, I want to test some algorithms first. I tried to install NumPy on one of our corporate servers. However, I do not have root access, so i did following: tar -xvzf numpy-1.2.0.tar.gz [OK] cd numpy-1.2.0 python setup.p