manpath: can't set the locale; make sure $LC_* and $LANG are correct
How to solve the Problem:
manpath: can't set the locale; make sure $LC_* and $LANG are correct
- Mehod 1:
vim /etc/environment
```sh
LANG=en_US.utf-8
LC_ALL=en_US.utf-8
```
- Method 2:
vim /etc/default/locale
```sh
LC_ALL="en_US.UTF-8"
```
- Method 3
```sh
sudo locale-gen en_GB.UTF-8 UTF-8
sudo update-locale en_GB.UTF-8 UTF-8
export LANGUAGE=en_GB.UTF-8
export LC_ALL=en_GB.UTF-8
```
- relogin and veryfy
locale
No comments