I am building a Django web application and using Conda to manage the required packages and virtual environment. I want to set an environment variable (location of Django settings) as soon as I activate the environment. It should also change the current directory to my project directory.
I previously used virtualenvwrapper and I just added commands to the postactivate script.
How can I achieve this with Conda?
source
share