will8211 / unimatrix

Python script to simulate the display from "The Matrix" in terminal. Uses half-width katakana unicode characters by default, but can use custom character sets. Accepts keyboard controls while running. Based on CMatrix.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Invalid Escape Sequence

EvilJordan opened this issue · comments

Not sure if this matters (because it still seems to run well), but when running, this is dumped to the terminal:

/usr/local/bin/unimatrix:32: SyntaxWarning: invalid escape sequence '\;'
  help_msg = '''
/usr/local/bin/unimatrix:231: SyntaxWarning: invalid escape sequence '\;'
  '`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',
/usr/local/bin/unimatrix:237: SyntaxWarning: invalid escape sequence '\;'
  'S': '`-=~!@#$%^&*()_+[]{}|\;\':",./<>?"',

check that you're not running an older version of unimatrix. I had the same error until I noticed I had installed it twice, the latest was through pipx, which was the correct version without any error.

EDIT: it seems the error occurs due to the version of python (3.11 runs correctly for me)