I pip the \"opencc\"
when i shell the code below
import opencc
it shows
Traceback (most recent call last):
File \"&
The opencc
module is not compatible with Python 3. It can currently only be used on Python 2.
Specifically, the version
module is part of the opencc
package, but in Python 3 you'd need to use absolute imports, from opencc.version import __version__
or from .version import __version__
. There will be other issues with the code too.