19
Python语言环境错误:不支持的语言环境设置
在python中执行此操作时为什么会出现以下错误: >>> import locale >>> print str( locale.getlocale() ) (None, None) >>> locale.setlocale(locale.LC_ALL, 'de_DE') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python2.7/locale.py", line 531, in setlocale return _setlocale(category, locale) locale.Error: unsupported locale setting 这也适用于其他语言环境,例如fr或nl。我正在使用Ubuntu 11.04。 更新:执行以下操作不会产生任何结果: dpkg-reconfigure locales perl: warning: Setting locale failed. perl: warning: …
317
python
locale
ubuntu-11.04