Skip to content Skip to sidebar Skip to footer

Import Error - No Localization Support For Language 'eng'

I know there was a question related to this question. But I could not find what I expected . ImportError: No localization support for language 'eng' in python I am getting the err

Solution 1:

In your python file, add this line of code to import the error messages required.

from mysql.connector.locales.engimport client_error

pyinstaller will use this information to include the error messages to the compiled executable.

Post a Comment for "Import Error - No Localization Support For Language 'eng'"