We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
# PROBLEM pyenv virtualenv 3.9.0 foo-3.9.0 poetry install # won't install packages to the new virtualenv!
# SOLUTION pyenv virtualenv 3.9.0 foo-3.9.0 export VIRTUAL_ENV="$(pyenv virtualenv-prefix)/envs/foo-3.9.0" poetry install # installs packages to the new virtualenv