Currently, one can only install this package using Python 3, as Python 2's open() function doesn' have an encoding parameter. This can be solved by using io.open, which is Python 3's new open function.
It's available since Python 2.6. It's implemented in Python in 2.6 and 3.0, which makes it kinda slow, but that shouldn't be a problem in this case.
Currently, one can only install this package using Python 3, as Python 2's
open()
function doesn' have anencoding
parameter. This can be solved by usingio.open
, which is Python 3's newopen
function. It's available since Python 2.6. It's implemented in Python in 2.6 and 3.0, which makes it kinda slow, but that shouldn't be a problem in this case.