Otherwise packages (e.g. click-spinner would fail), because open() will try to open with the default locale (often ASCII), see here.
This can be fixed by setting the locale to UTF-8, e.g. by running:
export LANG=UTF-8
export LC_ALL=UTF-8
(probably only the second one is needed).
Better to put this in the ~/.bashrc or at least in the bin/activate of the venv so that it works in all terminals.
Otherwise packages (e.g.
click-spinnerwould fail), because open() will try to open with the default locale (often ASCII), see here.This can be fixed by setting the locale to UTF-8, e.g. by running:
(probably only the second one is needed).
Better to put this in the
~/.bashrcor at least in thebin/activateof the venv so that it works in all terminals.