I m using Windows 7, I wanted a way where I could run my python file and it would execute my virtual environment. I have read the following commands
activate_this_file = "/path/to/virtualenv/bin/activate_this.py"
execfile(activate_this_file, dict(__file__=activate_this_file))
I need to know what is /path/to/virtualenv/bin/
and what is activate_this.py
? Anyone know better solution for this?