NUMPY Installation Win7 Intel MKL

2014-12-10 Thread wolosonovich
Hello! Hopefully some of you can help me out. I am having the hardest time installing Numpy using the Intel MKL library. I've read the Intel article on their site, but it doesn't specifically address Windows, so I suspect the directions get me close, but when it comes to this sort of thing, eve

Re: Python(x,y) interferes with earlier Numpy installation

2014-02-13 Thread Martin Schöön
Den 2014-02-13 skrev beliav...@aol.com : > I fixed the problem by reinstalling Numpy. Good. Just one note since I happened to look into updating Python(x,y) at work today and stumbled on this: The Python(x,y) guys recommend that one removes other Python installations prior to installing Python(x,

Re: Python(x,y) interferes with earlier Numpy installation

2014-02-13 Thread beliavsky
I fixed the problem by reinstalling Numpy. -- https://mail.python.org/mailman/listinfo/python-list

Python(x,y) interferes with earlier Numpy installation

2014-02-13 Thread beliavsky
I am running Python 2.7.5 on Windows 7 and installed Numpy, which worked. Then I installed Python(x,y) from a file Python(x,y)-2.7.5.2.exe, and now running the script from numpy import array, size, shape, min, max, sum a = array([1, 2, 3]) print shape(a) gives the error messages Traceback (most

Re: numpy installation

2010-07-25 Thread David Cournapeau
Hi Jia, On Sun, Jul 25, 2010 at 12:01 PM, Jia Hu wrote: > Hello: > > I tried to install numpy 1.4.1 from source under ubuntu following > instruction at http://docs.scipy.org/doc/numpy/user/install.html > I type "" python setup.py build –help-fcompiler ""  and it says gnu95 is > found. Then I run

numpy installation

2010-07-24 Thread Jia Hu
Hello: I tried to install numpy 1.4.1 from source under ubuntu following instruction at http://docs.scipy.org/doc/numpy/user/install.html I type "" python setup.py build –help-fcompiler "" and it says gnu95 is found. Then I run ""python setup.py build –fcompiler=gnu95"". There is error. Does any

Re: NumPy installation won't import correctly

2009-12-06 Thread Alex
On Dec 1, 7:04 pm, Ethos wrote: > On Dec 1, 6:37 pm, David Cournapeau wrote: > > > On Wed, Dec 2, 2009 at 11:03 AM, Ethos wrote: > > > > I reinstallednumpy, from sourceforge, even though I had already > > > installed the latest version. Same business. 2.5 imports fine, 2.6 > > > doesn't. > > > >

Re: NumPy installation won't import correctly

2009-12-01 Thread Ethos
On Dec 1, 6:37 pm, David Cournapeau wrote: > On Wed, Dec 2, 2009 at 11:03 AM, Ethos wrote: > > > I reinstalled numpy, from sourceforge, even though I had already > > installed the latest version. Same business. 2.5 imports fine, 2.6 > > doesn't. > > > Here's the output of the commands you gave me

Re: NumPy installation won't import correctly

2009-12-01 Thread David Cournapeau
On Wed, Dec 2, 2009 at 11:03 AM, Ethos wrote: > > I reinstalled numpy, from sourceforge, even though I had already > installed the latest version. Same business. 2.5 imports fine, 2.6 > doesn't. > > Here's the output of the commands you gave me. Which exact version of mac os x are you using ? (t

Re: NumPy installation won't import correctly

2009-12-01 Thread Ethos
On Dec 1, 3:33 am, "Diez B. Roggisch" wrote: > Ethos wrote: > > I installed NumPy for python 2.6 on my leopard macbook, using the > > nifty mac installer they now provide. I have the 2.6 official python > > distro installed on my computer, in addition to the 2.5 that is native > > on the mac. When

Re: NumPy installation won't import correctly

2009-12-01 Thread Günther Dietrich
Ethos wrote: >I installed NumPy for python 2.6 on my leopard macbook, using the >nifty mac installer they now provide. I have the 2.6 official python >distro installed on my computer, in addition to the 2.5 that is native >on the mac. When I went to test out the installation, with 2.6, it >gave m

Re: NumPy installation won't import correctly

2009-12-01 Thread David Cournapeau
On Tue, Dec 1, 2009 at 7:47 PM, Ethos wrote: > ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/2.6/ > lib/python2.6/site-packages/numpy/core/multiarray.so, 2): no suitable > image found.  Did find: >        /Library/Frameworks/Python.framework/Versions/2.6/lib/python2.6/site- >

Re: NumPy installation won't import correctly

2009-12-01 Thread Diez B. Roggisch
Ethos wrote: > I installed NumPy for python 2.6 on my leopard macbook, using the > nifty mac installer they now provide. I have the 2.6 official python > distro installed on my computer, in addition to the 2.5 that is native > on the mac. When I went to test out the installation, with 2.6, it > ga

NumPy installation won't import correctly

2009-12-01 Thread Ethos
I installed NumPy for python 2.6 on my leopard macbook, using the nifty mac installer they now provide. I have the 2.6 official python distro installed on my computer, in addition to the 2.5 that is native on the mac. When I went to test out the installation, with 2.6, it gave me this: >>> import

Re: matplotlib and numpy installation

2006-05-27 Thread Travis E. Oliphant
cesco wrote: > Hi, > > I wanted to install python, numpy and matplotlib on Linux Ubuntu. > I installed python with the following commands > ./configure --enable-unicode=ucs4 > [snip] > running build_ext > building 'matplotlib.backends._ns_backend_agg' extension > gcc options: '-pthread -fno-strict

matplotlib and numpy installation

2006-05-27 Thread cesco
Hi, I wanted to install python, numpy and matplotlib on Linux Ubuntu. I installed python with the following commands ./configure --enable-unicode=ucs4 make make install and then I installed numpy running python setup.py install Finally I came to matplotlib, that for the installation requires the c

Re: where is python.h? / NumPy installation

2005-04-12 Thread martino
> > It *should* be > /System/Library/Frameworks/Python.framework/Versions/2.3/include/python2.3/Python.h > > In the meantime, you can snag a pre-built Numeric from > >http://pythonmac.org/packages/ It was not there to start with and by trying to install xcode from apple's developpers site,

Re: where is python.h? / NumPy installation

2005-04-11 Thread Robert Kern
martino wrote: Hi, I am trying to install NumPy (v23.8) onder Macosx (panther version). Python (v2.3) is bundled into panther and I installed the IDE on top of that. After having untarred the source distribution in the desktop directory and typed python setup.py install as recommended in the atta

where is python.h? / NumPy installation

2005-04-11 Thread martino
Hi, I am trying to install NumPy (v23.8) onder Macosx (panther version). Python (v2.3) is bundled into panther and I installed the IDE on top of that. After having untarred the source distribution in the desktop directory and typed >python setup.py install as recommended in the attached documenta