ImportError: No module named numarray

2005-07-11 Thread enas khalil


when i write a code to import some module like the following :


from nltk.probability import ConditionalFreqDist

I got the error : 

Traceback (most recent call last): File "C:\Python24\toky.py", line 1, in -toplevel- from nltk.probability import ConditionalFreqDist File "C:\Python24\Lib\site-packages\nltk\probability.py", line 56, in -toplevel- import types, math, numarrayImportError: No module named numarray
can you please tell me the cause 

		 Sell on Yahoo! Auctions  - No fees. Bid on great items.-- 
http://mail.python.org/mailman/listinfo/python-list

Re: ImportError: No module named numarray

2005-07-11 Thread Robert Kern
enas khalil wrote:
 
 when i write a code to import some module like the following :
  
  
 from nltk.probability import ConditionalFreqDist
  
 I got the error :
  
 Traceback (most recent call last):
   File C:\Python24\toky.py, line 1, in -toplevel-
 from nltk.probability import ConditionalFreqDist
   File C:\Python24\Lib\site-packages\nltk\probability.py, line 56,
 in -toplevel-
 import types, math, numarray
 ImportError: No module named numarray
 
 can you please tell me the cause 

I already did. You need to install numarray.

http://www.stsci.edu/resources/software_hardware/numarray

-- 
Robert Kern
[EMAIL PROTECTED]

In the fields of hell where the grass grows high
  Are the graves of dreams allowed to die.
   -- Richard Harter

-- 
http://mail.python.org/mailman/listinfo/python-list


ImportError: No module named numarray

2005-07-09 Thread enas khalil
dear all
could you tell me how can i fix this error appears when i try to import modules from nltk 
as follows

from nltk.probability import ConditionalFreqDist
Traceback (most recent call last): File "pyshell#1", line 1, in -toplevel- from nltk.probability import ConditionalFreqDist File "C:\Python24\Lib\site-packages\nltk\probability.py", line 56, in -toplevel- import types, math, numarrayImportError: No module named numarray

thanks __Do You Yahoo!?Tired of spam?  Yahoo! Mail has the best spam protection around http://mail.yahoo.com -- 
http://mail.python.org/mailman/listinfo/python-list

Re: ImportError: No module named numarray

2005-07-09 Thread Robert Kern
enas khalil wrote:
 dear all
 could you tell me how can i fix this error appears when i try to import 
 modules from nltk
 as follows
  
 from nltk.probability import  ConditionalFreqDist
 Traceback (most recent call last):
   File pyshell#1, line 1, in -toplevel-
 from nltk.probability import  ConditionalFreqDist
   File C:\Python24\Lib\site-packages\nltk\probability.py, line 56, in 
 -toplevel-
 import types, math, numarray
 ImportError: No module named numarray

Install numarray.

http://www.stsci.edu/resources/software_hardware/numarray

-- 
Robert Kern
[EMAIL PROTECTED]

In the fields of hell where the grass grows high
  Are the graves of dreams allowed to die.
   -- Richard Harter

-- 
http://mail.python.org/mailman/listinfo/python-list