You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Installed on windows (works ok), fails to run.
terminal.py:
T = Terminal(stream=sys.stderr)
TypeError: PlainTerminal() takes no arguments
can be fixed like this:
# ...
try:
import blessings
# this can throw _curses.error: setupterm: could not find terminal
# better find out now
blessings.Terminal()
Terminal = blessings.Terminal
COLOR_TERMINAL = True
T = Terminal(stream=sys.stderr)
except Exception:
Terminal = PlainTerminal
T = Terminal()
The text was updated successfully, but these errors were encountered:
Installed on windows (works ok), fails to run.
terminal.py:
can be fixed like this:
The text was updated successfully, but these errors were encountered: