web-dev-qa-db-ja.com

apt-getインストールのロケールエラー

Ubuntu 14.04でapt-get installを使用して新しいパッケージまたはソフトウェアをインストールできない、エラーの詳細

installArchives() failed: Perl: warning: Setting locale failed. 
Perl: warning: Please check that your locale settings: 
    LANGUAGE = (unset), 
    LC_ALL = (unset), 
    LANG = "en_IN.ISO8859-1" 
    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_MESSAGES to default locale: No such file or directory 
locale: Cannot set LC_ALL to default locale: No such file or directory 
Perl: warning: Setting locale failed. 
Perl: warning: Please check that your locale settings: 
    LANGUAGE = (unset), 
    LC_ALL = (unset), 
    LANG = "en_IN.ISO8859-1" 
    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_MESSAGES to default locale: No such file or directory 
locale: Cannot set LC_ALL to default locale: No such file or directory 
Perl: warning: Setting locale failed. 
Perl: warning: Please check that your locale settings: 
    LANGUAGE = (unset), 
    LC_ALL = (unset), 
    LANG = "en_IN.ISO8859-1" 
    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_MESSAGES to default locale: No such file or directory 
locale: Cannot set LC_ALL to default locale: No such file or directory 
(Reading database ... 
(Reading database ... 5% 
(Reading database ... 10% 
(Reading database ... 15% 
(Reading database ... 20% 
(Reading database ... 25% 
(Reading database ... 30% 
(Reading database ... 35% 
(Reading database ... 40% 
(Reading database ... 45% 
(Reading database ... 50% 
(Reading database ... 55% 
(Reading database ... 60% 
(Reading database ... 65% 
(Reading database ... 70% 
(Reading database ... 75% 
(Reading database ... 80% 
(Reading database ... 85% 
(Reading database ... 90% 
(Reading database ... 95% 
(Reading database ... 100% 
(Reading database ... 337820 files and directories currently installed.) 
Preparing to unpack .../python-colorama_0.2.5-0.1ubuntu2_all.deb ... 
Unpacking python-colorama (0.2.5-0.1ubuntu2) ... 
dpkg: error processing archive /var/cache/apt/archives/python-colorama_0.2.5-0.1ubuntu2_all.deb (--unpack): 
 trying to overwrite '/usr/lib/python2.7/dist-packages/colorama/ansi.py', which is also in package python-batteryonboardservices 0.1-1 
Preparing to unpack .../python-setuptools_3.3-1ubuntu2_all.deb ... 
Unpacking python-setuptools (3.3-1ubuntu2) ... 
dpkg: error processing archive /var/cache/apt/archives/python-setuptools_3.3-1ubuntu2_all.deb (--unpack): 
 trying to overwrite '/usr/lib/python2.7/dist-packages/setuptools/dist.py', which is also in package python-batteryonboardservices 0.1-1 
dpkg-deb: error: subprocess paste was killed by signal (Broken pipe) 
Errors were encountered while processing: 
 /var/cache/apt/archives/python-colorama_0.2.5-0.1ubuntu2_all.deb 
 /var/cache/apt/archives/python-setuptools_3.3-1ubuntu2_all.deb 
Error in function: 
dpkg: dependency problems prevent configuration of python-pip: 
 python-pip depends on python-colorama; however: 
  Package python-colorama is not installed. 
 python-pip depends on python-setuptools (>= 0.6c1); however: 
  Package python-setuptools is not installed. 

dpkg: error processing package python-pip (--configure): 
 dependency problems - leaving unconfigured 
1
sourav

ロケールを修正するには、言語サポート設定を確認してください-英語(インド)をインストールする必要があります。そうでない場合は、インストールします。次に実行します:

Sudo locale-gen en_IN.UTF-8

ロケールが生成されない場合は、使用できます

Sudo dpkg-reconfigure locales

大規模なリストからen_IN UTF-8を選択して同じことをします

必要なロケールを生成した後、localeの出力を確認します。あなたは見たい:

LANG=en_IN.UTF-8
LANGUAGE=en_IN:en
LC_CTYPE="en_IN.UTF-8"
LC_NUMERIC=en_IN.UTF-8
LC_TIME=en_IN.UTF-8
LC_COLLATE="en_IN.UTF-8"
LC_MONETARY=en_IN.UTF-8
LC_MESSAGES="en_IN.UTF-8"
LC_PAPER=en_IN.UTF-8
LC_NAME=en_IN.UTF-8
LC_ADDRESS=en_IN.UTF-8
LC_TELEPHONE=en_IN.UTF-8
LC_MEASUREMENT=en_IN.UTF-8
LC_IDENTIFICATION=en_IN.UTF-8
LC_ALL=

すべてのen_IN.UTF-8が表示されない場合は、次を実行します。

Sudo update-locale LANG="en_IN.UTF-8" LANGUAGE=en_IN:en

localeをもう一度確認します。 LC変数がまだ間違っている場合は、次を実行します。

nano ~/.pam_environment

次のように編集します。

LANGUAGE=en_IN:en
LANG=en_IN.UTF-8
LC_NUMERIC=en_IN.UTF-8
LC_TIME=en_IN.UTF-8
LC_MONETARY=en_IN.UTF-8
LC_PAPER=en_IN.UTF-8
LC_NAME=en_IN.UTF-8
LC_ADDRESS=en_IN.UTF-8
LC_TELEPHONE=en_IN.UTF-8
LC_MEASUREMENT=en_IN.UTF-8
LC_IDENTIFICATION=en_IN.UTF-8
PAPERSIZE=a4

papersizeはそのままにしてください-あなたにとって何が必要かはわかりません!)

保存、終了、入力:source ~/.pam_environment、これでlocaleが修正されました。

3
Zanna

ロケールの問題を修正する必要があります。その後、再び動作します。

この問題を修正するには、このスレッドを確認してください: https://stackoverflow.com/questions/2499794/how-can-i-fix-a-locale-warning-from-Perl

0
Christian M