Being reading this
http://conda.pydata.org/docs/using/envs.html
Is it possible to run a conda python directly without having to source activate xxx
source activate xxx
Actually, you can do exactly the same as in venv in miniconda. If path_to_miniconda is your installation dir of miniconda, then
/path_to_miniconda/envs/name_of_env/bin/python xxx.py
should work.