Warning: Python 3.6 was not found on your system…
警告:
Warning: Python 3.6 was not found on your system…
You can specify specific versions of Python with:
$ pipenv --python path\to\python
原因:
服务器项目中的python版本与本地python版本不一致
pipfile中指定的python version是3.6(服务器),但本地的python是3.7版本
解决办法:
pipenv install --three
根据Pipfile创建虚拟环境成功: