with virtualenvwrapper, I could set up individual virtual names and call workon venv, linking them to specific settings files (for example, test_settings.py or dev_settings.py). I specify the use of hooks in a virtual bin - preactivate, postactivate, predeactivate and postdeactivate.
Is there something equivalent for pyenv? pyenv-virtualenv automatically switches virtualenvs based on the .python version installed in the current directory, so there is no need to activate, and .pyenv / versions / venv / bin / dir does not have the compliment of hooks that VirtualVrapper has anyway.
I can easily create different virtualenv for different applications, but how can I associate them with different application settings for the environment?
source share