"File -X: does not exist" message from ipy.exe in Windows PowerShell
If I type this line in an MS-DOS Command Prompt window:
ipy -X:ColorfulConsole
IronPython starts as expected with the colorful console option enabled. However, if I find the same line in Windows PowerShell, I get the message:
File -X: does not exist
Can someone please explain what I am doing wrong?
+1
Charles anderson
source
to share
1 answer
Try this code:
ipy '-X:ColorfulConsole'
Or any quoting mechanism is supported in Windows PowerShell - the shell will strip your argument.
Input
ipy -X: ColorfulConsole
at the MS-DOS prompt returns the same response:
File -X: does not exist
...
+5
gimel
source
to share