Python ロケールエラー: サポートされていないロケール設定 質問する

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: 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

ベストアンサー1

次のコマンドを実行します

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

これは解決するでしょう。

一部のシステムでは、出力.UTF-8内の実際の構文と必ず一致させてください。locale -a.utf8

おすすめ記事