From 7b7b696c6efd1b7c6d07f4cc6c42abb7d987c60f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Rosa?= Date: Tue, 22 Oct 2019 14:39:25 +0200 Subject: [PATCH] Update documentation regarding issue #20 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: João Rosa --- osx-install.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/osx-install.md b/osx-install.md index f062331..c9c014b 100644 --- a/osx-install.md +++ b/osx-install.md @@ -32,3 +32,16 @@ Once the installer has completed, you should then be able to produce `.pdf` repo ```RuntimeError: Python is not installed as a framework. The Mac OS X backend will not be able to function correctly if Python is not installed as a framework.``` In this case, run the following: `$ echo "backend: TkAgg" >> ~/.matplotlib/matplotlibrc` + +- If your terminal doesn't have the `LC_ALL` and `LANG` set, you may see the error: + + ```ValueError: unknown locale: UTF-8``` + + In that case, configure the variables in your terminal configuration file. As example you can (use the definition that fits your workflow): + + ``` + export LC_ALL=en_US.UTF-8 + export LANG=en_US.UTF-8 + ``` + + You will need to restart your terminal for your changes take effect. \ No newline at end of file