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

当前回答

首先,通过以下步骤确保你已经安装了语言包:

sudo apt-get install language-pack-en-base


sudo dpkg-reconfigure locales

其他回答

在我看来,在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

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

出口LC_ALL = C

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

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')

运行以下命令

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

它会解决这个问题。

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

首先,通过以下步骤确保你已经安装了语言包:

sudo apt-get install language-pack-en-base


sudo dpkg-reconfigure locales