Pipenv已安装,可以运行
$ pipenv --version
pipenv, version 2018.11.26
但是,在包含Pipfile
的VSCode中打开项目文件夹时,VSCode抱怨:
Workspace contains pipfile but attempt to run 'pipenv --venv' failed
with 'spawn pipenv ENOENT'. Make sure pipenv is on the PATH
答案 0 :(得分:1)
在用户设置(或工作区设置)上进行设置:
"python.pipenvPath": "/path/to/pipenv"
即使Pipenv正确位于PATH
中,您也必须明确地执行此操作。请参见vscode-python#2139,其动机是将python.pipenvPath
添加到设置中。