We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Couldn't load subscription status. Retry
# 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