我真的很感谢Pipenv的帮助。
我已使用pip3
安装并创建了一个空文件夹来测试虚拟环境进程。
但是,由于某些原因,当我在文件夹pipenv --three
上运行命令project-3
时,得到以下输出:
`Courtesy Notice: Pipenv found itself running within a virtual environment, so it will
automatically use that environment, instead of creating its own for any project. You can set
PIPENV_IGNORE_VIRTUALENVS=1 to force pipenv to ignore that environment and create its own
instead. You can set PIPENV_VERBOSITY=-1 to suppress this warning.
Creating a Pipfile for this project…`
因此,该命令确实会运行,并且在创建Pipfile
并将其位于文件夹中时会设置虚拟环境。
但是,由于某种原因,即使我使用了选项--three
,python版本仍设置为2.7(请检查以下内容)。
`[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
[packages]
[requires]
python_version = "2.7"`
请记住,我是一个初学者,还在学习中。
为什么上面的“礼貌通知”说它发现自己在虚拟环境中运行?
是否需要设置PIPENV_IGNORE_VIRTUALENVS=1
?如果是这种情况,该怎么办?
再次感谢,非常感谢您提出任何建议或建议:)