From: Stefan v. d. W. <st...@su...> - 2006-07-12 11:04:05
|
Hi Tamaryn On Wed, Jul 12, 2006 at 11:57:48AM +0100, Tamaryn Menneer wrote: > Hi=20 >=20 > I'm running Python 2.4 on Windows XP. I've installed NumPy, and run the > simple test of "import numeric" but I get the error "ImportError: No mo= dule > named numeric" in return. The module numeric is located in > C:\Python24\Lib\site-packages\numpy\core, but even when I set PYTHONPAT= H to > this it returns the same error. Imports of modules in the Lib directory= work > fine, but everything I've tried within site-packages results the no mod= ule > error. Set your PYTHONPATH to c:\Python24\Lib\site-packages and then try from numpy import oldnumeric as numeric > Any guidance would be very much appreciated. I'm virtually a complete n= ewbie > to all this, but I'll try my best to understand any responses!=20 If you are just starting out with numpy, you shouldn't need to import the numeric module at all. Take a look at the documentation on http://www.scipy.org/Documentation Good luck! St=E9fan |