Skip to content Skip to sidebar Skip to footer

Pyenv: How To 'rebuild' Virtualenvs After Rebuilding Python

I rebuilt python 3.7 to get pyinstaller to work on Mac, and it seems to have deleted all my virtualenvs using 3.7.0. The .python-version files still exist, and they point at the lo

Solution 1:

I don't know how did you rebuild pyenv, though for me running:

$ pyenv install $(previously installed python name to update)

than

$ pyenv rehash

Rebuild python and updated shims just fine.

Post a Comment for "Pyenv: How To 'rebuild' Virtualenvs After Rebuilding Python"