为什么我在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

当前回答

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

出口LC_ALL = C

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

其他回答

你的错误清楚地说,你正在尝试使用地区,一些东西不存在。

>>> 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 581, in setlocale
    return _setlocale(category, locale)
locale.Error: unsupported locale setting

语言环境。错误:不支持的区域设置

要检查可用的设置,请使用locale -a

deb@deb-Latitude-E7470:/ambot$ locale -a
C
C.UTF-8
en_AG
en_AG.utf8
en_AU.utf8
en_BW.utf8
en_CA.utf8
en_DK.utf8
en_GB.utf8
en_HK.utf8
en_IE.utf8
en_IN
en_IN.utf8
en_NG
en_NG.utf8
en_NZ.utf8
en_PH.utf8
en_SG.utf8
en_US.utf8
en_ZA.utf8
en_ZM
en_ZM.utf8
en_ZW.utf8
POSIX

所以你可以用其中一个,

>>> locale.setlocale(locale.LC_ALL, 'en_AG.utf8')
'en_AG.utf8'
>>> 

对于de_DE

这个文件既可以手动调整,也可以使用update-locale工具更新。

update-locale LANG=de_DE.UTF-8

不是这个问题的答案,但这个问题帮助我找到了问题的答案。

我在Docker容器内使用时遇到了这个问题。 我通过安装locale,将我的语言添加到locale来解决。执行locale-gen(它从locale.gen读取),最后将LANG设置为我的语言。

例如,我的Dockerfile:

RUN apt-get install -y locales
RUN echo "pt_BR.UTF-8 UTF-8" >> /etc/locale.gen
RUN locale-gen pt_BR.UTF-8
ENV LANG=pt_BR.UTF-8

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

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

运行以下命令

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

它会解决这个问题。

确保.utf -8部分与locale -a输出中的实际语法匹配,例如在某些系统上的.utf8。

在我看来,在python{,3}中设置本地语言环境最简单的方法是:

>>> import locale
>>> locale.setlocale(locale.LC_ALL, '')
'de_DE.UTF-8'

然后,区域感知的东西就可以工作了,如果你在一个像样的linux发行版上,应该也可以在其他操作系统的二进制发行版上工作(或者这是一个错误)。

>>> import datetime as dt
>>> print(dt.date.today().strftime("%A %d. %B %Y"))
Sonntag 11. Dezember 2016