On Fri, Aug 14, 2009 at 5:16 PM, David Goldsmith<[email protected]> wrote: > Hi! Please remind: running python in the Windows Terminal (DOS command > prompt), how does one pass the command "import numpy as np"? I tried 'python > "import numpy as np"', to no avail. >
Is this what you want? In a linux terminal python -c "import numpy as np; print np.ones(5)" http://docs.python.org/using/cmdline.html Skipper _______________________________________________ NumPy-Discussion mailing list [email protected] http://mail.scipy.org/mailman/listinfo/numpy-discussion
