为什么我在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: Please check that your locale settings:
    LANGUAGE = (unset),
    LC_ALL = (unset),
    LC_CTYPE = "UTF-8",
    LANG = (unset)
    are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory

当前回答

对于那些部署docker映像并使用locale -a命令中没有显示的语言环境的人,将这一行添加到Dockerfile中 运行apt-get install -y locale

这将添加所有的地区到你的映像,我使用的de_DE不是AWS默认Ubuntu服务器的一部分。

其他回答

根据这个链接,输入如下命令进行求解:

出口LC_ALL = C

如果我是你,我会使用BABEL: http://babel.pocoo.org/en/latest/index.html

我有同样的问题在这里使用Docker,我已经尝试了每一个步骤,并没有很好地工作,总是得到区域错误,所以我决定使用BABEL,一切都工作得很好。

上述答案之一提供了解决方案:

export LC_ALL="en_US.UTF-8"
export LC_CTYPE="en_US.UTF-8"
sudo dpkg-reconfigure locales

上述解决方案的问题是,它必须在linux shell上完成。但是,如果您提供的代码在客户端机器上工作,那么这是一个糟糕的方法。 我还尝试使用os.system()执行上述命令,但仍然不起作用。

对我有效的解决方法是

locale.setlocale(locale.LC_ALL,'en_US.UTF-8')

只需打开.bashrc文件并添加这个

出口LC_ALL = C

然后在终端中输入source .bashrc。

如果你在Debian(或Debian分支)上,你可以使用以下方法添加区域设置:

dpkg-reconfigure locales