I'm trying to open a file with MBCS encoding in Python but I'm getting an error.
If I write:
fileIN = open(filename, "r", encoding = "mbcs")
I get:
Traceback (most recent call last): File "/data/stru0039/Rotation/test.py", line 144, in <module> fileIN = open(filename, "r", encoding = "mbcs") LookupError: unknown encoding: mbcs
Is there a way to install this codec? Thanks!