当我尝试将新的pipenv项目导入最新的pycharm时,我收到以下错误:
Warning: the environment variable LANG is not set!
We recommend setting this in ~/.profile (or equivalent) for proper expected behavior.
Warning: Python 3.6 was not found on your system...
You can specify specific versions of Python with:
$ pipenv --python path/to/python
我在~/.profile
export LC_ALL=en_US.UTF-8
export LANG=en_US.UTF-8
这是我的MacOS系统解释器的输出:
JJ-MBP:pybfg jj$ which python
/Users/jj/miniconda3/bin/python
JJ-MBP:pybfg jj$ python --version
Python 3.6.4 :: Anaconda, Inc.
要让Pipenv与pycharm一起使用,我缺少什么?