0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Localeのエラーの直し方

Posted at

このようなエラーが出た時の対処法。

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

多言語パッケージをインストール。
ここでは英語版をインストール。

$ apt-get install language-pack-en

ロケールを追加。

$ vi /etc/environment
$ cat << EOS >> /etc/environment
> LANG=en_US.UTF-8
> LC_CTYPE=en_US.UTF-8
> EOS
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?