You need change a file in the library.zip .
Perhaps, you add directory 'json' into the library.zip .
Extract json/scanner.py and open the file.
You can see following code.
-------------------------------------
"""JSON token scanner
"""
import re
try:
from _json import make_scanner as c_make_scanner
except ImportError:
c_make_scanner = None
...
-------------------------------------
Then, add 1 line.
-------------------------------------
"""JSON token scanner
"""
import re
try:
from _json import make_scanner as c_make_scanner
except ImportError:
c_make_scanner = None
c_make_scanner = None # disable C scanner.
...
-------------------------------------
Perhaps, the error will be fixed.
Thanks.
- Yasuhiro Matsumoto