-
I see that pipenv creates magical stuff in Does pipenv actually call virtualenv, and it is virtualenv which directly creates this stuff? If so, should I be asking in a this question in a virtualenv forum? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You can find the virtualenv for your current pipenv managed project by running |
Beta Was this translation helpful? Give feedback.
You can find the virtualenv for your current pipenv managed project by running
pipenv --venv
. The virtualenv name is auto-generated from pipenv hence theFoo-1E7o8dGZ
. The virtualenv is a link to your version of Python for the project and all of the dependencies you require are installed and referenced from there for the project space. Virtualenv provides isolation for your project dependencies.