Incompatibilidad de codificación de script Jython y Python

Tengo un script de Python creado en Python 3.5.4. El script está importando nltk. Cuando intento ejecutar el script desde Java usando Jython 2.7.1, me da los siguientes errores.

Exception in thread "MainThread" java.lang.ExceptionInInitializerError
Caused by: Traceback (most recent call last):
  File "D:\TensorFlow\TflearnExample\ChatBot.py", line 9, in <module>
    import nltk
  File "D:\Python\Lib\site-packages\nltk\__init__.py", line 137, in <module>
    from nltk.stem import *
  File "D:\Python\Lib\site-packages\nltk\stem\__init__.py", line 29, in <module>
    from nltk.stem.snowball import SnowballStemmer
  File "D:\Python\Lib\site-packages\nltk\stem\snowball.py", line 26, in <module>
    from nltk.corpus import stopwords
  File "D:\Python\Lib\site-packages\nltk\corpus\__init__.py", line 66, in <module>
    from nltk.corpus.reader import *
  File "D:\Python\Lib\site-packages\nltk\corpus\reader\__init__.py", line 105, in <module>
    from nltk.corpus.reader.panlex_lite import *
  File "D:\Python\Lib\site-packages\nltk\corpus\reader\panlex_lite.py", line 15, in <module>
    import sqlite3
SyntaxError: Non-ASCII character in file 'D:\Python\Lib\sqlite3\__init__.py', but no encoding declared; see http://www.python.org/peps/pep-0263.html for details

Además, cuando verifiqué la codificación predeterminada de Python y Jython, el resultado fue utf-8 y ascii respectivamente.

Respuestas a la pregunta(0)

Su respuesta a la pregunta