vote up 1 vote down star

If I type this line in an MS-DOS command prompt window:

ipy -X:ColorfulConsole

IronPython starts up as expected with the colorful console option enabled. However, if I type the same line in Windows PowerShell I get the message:

File -X: does not exist

Can someone explain what I'm doing wrong?

flag

1 Answer

vote up 5 vote down check

try:

ipy '-X:ColorfulConsole'

Or whatever quoting mechanism is supported in Windows PowerShell - the shell is splitting your argument.

Typing

ipy -X: ColorfulConsole

in MS-DOS command prompt window returns same response File -X: does not exist.

link|flag
Thanks. Putting the option in single quotes fixed the problem. – Charles Anderson Nov 7 '08 at 14:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.