You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ryan Boehning edited this page Nov 18, 2020
·
2 revisions
# 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