So I had this in my `.bash_profile`:
PATH="/Library/Frameworks/Python.framework/Versions/3.4/bin:${PATH}"
And I thought that if I just change it to this:
PATH="/Users/myusername/.pyenv/versions/3.7.2/bin:${PATH}"
Then virtualenvwrapper should simply use this as the new "source" Python to use. But that issues a warning about the Python version not having any virtualenvwrapper hooks.
How can I change the *version* `mkvirtualenv` installs by default? Preferably this should be a one-time change.
Thanks.