I am facing the following error:
JavaScript
x
23
23
1
Warning: the environment variable LANG is not set!
2
We recommend setting this in ~/.profile (or equivalent) for proper expected behavior.
3
Creating a virtualenv for this project…
4
Using /usr/local/opt/python/bin/python3.6 (3.6.4) to create virtualenv…
5
⠋Traceback (most recent call last):
6
File "/usr/local/Cellar/python/3.6.4_4/Frameworks/Python.framework/Versions/3.6/lib/python3.6/runpy.py", line 193, in _run_module_as_main
7
"__main__", mod_spec)
8
File "/usr/local/Cellar/python/3.6.4_4/Frameworks/Python.framework/Versions/3.6/lib/python3.6/runpy.py", line 85, in _run_code
9
exec(code, run_globals)
10
File "/usr/local/lib/python3.6/site-packages/pipenv/pew/__main__.py", line 8, in <module>
11
import pew
12
File "/usr/local/lib/python3.6/site-packages/pipenv/patched/pew/__init__.py", line 1, in <module>
13
from . import pew
14
File "/usr/local/lib/python3.6/site-packages/pipenv/patched/pew/pew.py", line 41, in <module>
15
from pew._utils import (check_call, invoke, expandpath, own, env_bin_dir,
16
File "/usr/local/lib/python3.6/site-packages/pipenv/patched/pew/_utils.py", line 22, in <module>
17
encoding = locale.getlocale()[1] or 'ascii'
18
File "/usr/local/Cellar/python/3.6.4_4/Frameworks/Python.framework/Versions/3.6/lib/python3.6/locale.py", line 581, in getlocale
19
return _parse_localename(localename)
20
File "/usr/local/Cellar/python/3.6.4_4/Frameworks/Python.framework/Versions/3.6/lib/python3.6/locale.py", line 490, in _parse_localename
21
raise ValueError('unknown locale: %s' % localename)
22
ValueError: unknown locale: UTF-8
23
Virtualenv location:
JavaScript
1
26
26
1
Creating a Pipfile for this project…
2
Traceback (most recent call last):
3
File "/usr/local/bin/pipenv", line 11, in <module>
4
sys.exit(cli())
5
File "/usr/local/lib/python3.6/site-packages/pipenv/vendor/click/core.py", line 722, in __call__
6
return self.main(*args, **kwargs)
7
File "/usr/local/lib/python3.6/site-packages/pipenv/vendor/click/core.py", line 697, in main
8
rv = self.invoke(ctx)
9
File "/usr/local/lib/python3.6/site-packages/pipenv/vendor/click/core.py", line 1066, in invoke
10
return _process_result(sub_ctx.command.invoke(sub_ctx))
11
File "/usr/local/lib/python3.6/site-packages/pipenv/vendor/click/core.py", line 895, in invoke
12
return ctx.invoke(self.callback, **ctx.params)
13
File "/usr/local/lib/python3.6/site-packages/pipenv/vendor/click/core.py", line 535, in invoke
14
return callback(*args, **kwargs)
15
File "/usr/local/lib/python3.6/site-packages/pipenv/cli.py", line 366, in install
16
selective_upgrade=selective_upgrade,
17
File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 1761, in do_install
18
skip_requirements=skip_requirements,
19
File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 636, in ensure_project
20
ensure_pipfile(validate=validate, skip_requirements=skip_requirements)
21
File "/usr/local/lib/python3.6/site-packages/pipenv/core.py", line 289, in ensure_pipfile
22
project.create_pipfile(python=python)
23
File "/usr/local/lib/python3.6/site-packages/pipenv/project.py", line 518, in create_pipfile
24
'python_version': python_version(required_python)[: len('2.7')]
25
TypeError: 'NoneType' object is not subscriptable
26
I tried setting the LANG
in ~/.profile
and ~/.bash_profile
. Both didn’t work.
Advertisement
Answer
What worked for me on Mac OS X Sierra is adding the following into my ~/.bash_profile
file:
JavaScript
1
4
1
export LANG="en_US.UTF-8"
2
export LC_ALL="en_US.UTF-8"
3
export LC_CTYPE="en_US.UTF-8"
4
Then I reloaded the bash profile with: source ~/.bash_profile
For those who use zsh shell, you must add those lines to your ~/.zshrc
JavaScript
1
4
1
export LANG="en_US.UTF-8"
2
export LC_ALL="en_US.UTF-8"
3
export LC_CTYPE="en_US.UTF-8"
4
Then I reload the bash profile with: source ~/.zshrc