Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #38858

Re: Statistics...help with numpy/scipy install

Date 2013-02-14 05:53 -0500
From Dave Angel <davea@davea.name>
Subject Re: Statistics...help with numpy/scipy install
References <3a451dc0-7f20-4116-92a6-fdaadc4d49fa@googlegroups.com> <5b8abdc5-bff7-4d9f-8762-323e30c575a5@googlegroups.com>
Newsgroups comp.lang.python
Message-ID <mailman.1761.1360839211.2939.python-list@python.org> (permalink)

Show all headers | View raw


On 02/13/2013 09:38 PM, Rex Macey wrote:
> I am sure I have python installed. I have been running it. in command line the window title is c:\python33\python.exe.  The first line begins Python 3.3.0. Later in the line is the string "64 bit <AMD64>] on Win32".
>
> Thus it appears I am trying to run a 32bit numpy with a 64bit python.  (Seems like a big ole 64 bit python should be able to swallow a little 32 bitty numpy). Is there a 64bit numpy? If not why not? Can someone get on this? Seriously, I'm under the impression that I need the 64 bit python because I have a 64 bit OS.
>

I can't answer the Numpy aspects, but I can tell you about 32bit versus 
64bit.

A 32 bit OS can only handle 32 bit applications.  It's conceivable to 
build a 32bit OS that will load and run 64bit apps, but it's probably 
impractical, and I don't know of anybody who has tried.

A 64bit OS can and does load both 32bit apps and 64bit apps.  But once 
it has loaded the app, the entire process has to be of the same 
"bittedness".  For Windows, that means any DLL's loaded from a 64bit 
process have to be 64bit, and any DLL's loaded from a 32bit process must 
be 32bit.

A python library may consist entirely of Python code, in which case it 
would work for either 32bit or 64bit Python installation.  But if the 
library includes DLL's (which Numpy certainly would) then there have to 
be separate versions of those DLL's.

Now, that library installation package may decide to include both sets 
of DLL's, and just install the appropriate ones at installation time. 
But that choice is entirely up to the library author.

-- 
DaveA

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Statistics...help with numpy/scipy install Rex Macey <xer0925@gmail.com> - 2013-02-10 09:35 -0800
  Re: Statistics...help with numpy/scipy install Mark Lawrence <breamoreboy@yahoo.co.uk> - 2013-02-10 18:10 +0000
    Re: Statistics...help with numpy/scipy install Rex Macey <xer0925@hotmail.com> - 2013-02-10 14:11 -0800
      Re: Statistics...help with numpy/scipy install Rex Macey <xer0925@hotmail.com> - 2013-02-10 14:14 -0800
        Re: Statistics...help with numpy/scipy install Oscar Benjamin <oscar.j.benjamin@gmail.com> - 2013-02-11 01:26 +0000
        Re: Statistics...help with numpy/scipy install David Robinow <drobinow@gmail.com> - 2013-02-10 21:22 -0500
        Re: Statistics...help with numpy/scipy install Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2013-02-10 22:53 -0500
      Re: Statistics...help with numpy/scipy install Rex Macey <xer0925@hotmail.com> - 2013-02-10 14:14 -0800
    Re: Statistics...help with numpy/scipy install Rex Macey <xer0925@hotmail.com> - 2013-02-10 14:11 -0800
  Re: Statistics...help with numpy/scipy install Michael Torrie <torriem@gmail.com> - 2013-02-10 11:14 -0700
  Re: Statistics...help with numpy/scipy install "Colin J. Williams" <cjw@ncf.ca> - 2013-02-10 13:23 -0500
  Re: Statistics...help with numpy/scipy install David Robinow <drobinow@gmail.com> - 2013-02-10 14:29 -0500
  Re: Statistics...help with numpy/scipy install Oscar Benjamin <oscar.j.benjamin@gmail.com> - 2013-02-10 19:34 +0000
  Re: Statistics...help with numpy/scipy install Rex Macey <xer0925@gmail.com> - 2013-02-13 18:38 -0800
    Re: Statistics...help with numpy/scipy install Terry Reedy <tjreedy@udel.edu> - 2013-02-14 00:29 -0500
    Re: Statistics...help with numpy/scipy install Dave Angel <davea@davea.name> - 2013-02-14 05:53 -0500
    Re: Statistics...help with numpy/scipy install Oscar Benjamin <oscar.j.benjamin@gmail.com> - 2013-02-14 11:09 +0000

csiph-web