From cb0b9c32c4e0471edd6b252ca5576384707864a6 Mon Sep 17 00:00:00 2001 From: shela Date: Sat, 6 Mar 2021 13:59:10 +0900 Subject: [PATCH] Fixed Python module installation failure on Windows Depending on the settings in the Windows code page, the installation of some Python modules may fail. Therefore, force the code page to UTF-8. --- docs/newbs_getting_started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/newbs_getting_started.md b/docs/newbs_getting_started.md index 3cb63e569207..77dbc392dcce 100644 --- a/docs/newbs_getting_started.md +++ b/docs/newbs_getting_started.md @@ -50,7 +50,7 @@ Then run the following command: Install the QMK CLI by running: - python3 -m pip install qmk + PYTHONUTF8=1 python3 -m pip install qmk