2014-06-10 56 views
0

我想用IronPython的終端顏色。更具體地說,我在IronPython 2.7.4上使用Windows 7 PowerShell,並且希望我的日誌消息用不同的顏色打印。Ironpython shell的顏色

我能夠在PowerShell上使用colorama和Python對日誌包進行顏色使用,但不幸的是我必須將我的腳本轉換爲使用IronPython運行,並且似乎colorama不能使用它。

任何人都可以幫忙嗎?

謝謝, 古爾

+0

找到了解決辦法。在colorama包中,第56行的文件「initialise.py」應該是:「on_windows = sys.platform.startswith('win')或sys.platform.startswith('cli')」而不是「on_windows = sys.platform.startswith( '雙贏')」 –

回答

0

找到了解決辦法。內的COLORAMA包,在管線56中的文件 「initialise.py」 時,它應該是:代替

on_windows = sys.platform.startswith('win') or sys.platform.startswith('cli') 

on_windows = sys.platform.startswith('win')