From a62c1e212c59a71841911168bc2589df0e9ede7f Mon Sep 17 00:00:00 2001 From: Harish Navnit Date: Sat, 14 Aug 2021 21:35:34 +0530 Subject: [PATCH] Add a note about OSX locales and pipenv --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 15030ab..5904929 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,13 @@ pipenv install --dev That was easy :) +NOTE: If you're on OSX, you may need to set the LOCALE's explcitly before running the `pipenv install` command. +
Read more: https://github.com/pypa/pipenv/issues/187 +```shell +$ export LANG=en_US.UTF-8 +$ export LC_ALL=en_US.UTF-8 +``` + Now you can give the tests a whirl: ```python