On 26 May 2011 10:37, Talla <jta...@gmail.com> wrote:
> C:\Python27>
> In addition when I run import command I got ('import' is not recognized as
> an internal or external command, operable program or batch file.)

import is not a command you can run at your command line, it's part of
Python. Do something like this instead:

C:\Python27> cd C:\
C:\>python
# Should start the Python interpreter, print python version etc.
>>> import numpy
>>> print(numpy.arange(3))

It will be worth taking some time to read a basic Python tutorial.

Cheers,
Scott
_______________________________________________
NumPy-Discussion mailing list
NumPy-Discussion@scipy.org
http://mail.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to