I want to set up a crontab to run a Python script.

Say the script is something like:

#!/usr/bin/python
print "hello world"

Is there a way I could specify a virtualenv for that Python script to run in? In shell I'd just do:

~$ workon myenv

Is there something equivalent I could do in crontab to activate a virtualenv?

link|improve this question

feedback

1 Answer

up vote 10 down vote accepted

If you're using "workon" you're actually using "virtualenv wrapper" which is another layer of abstraction that sits on top of virtualenv. virtualenv alone can be activated by cd'ing to your virtualenv root directory and running:

source bin/activate

workon is a command provided by virtualenv wrapper, not virtualenv, and it does some additional stuff that is not necessarily required for plain virtualenv. All you really need to do is source the bin/activate file in your virtualenv root directory to "activate" a virtualenv.

You can setup your crontab to invoke a bash script which does this:

#! /bin/bash    
cd my/virtual/env/root/dir
source bin/activate

# virtualenv is now active, which means your PATH has been modified.  Don't try to run python from /usr/bin/python, just run "python" and let the PATH figure out which version to run (based on what your virtualenv has configured)

python myScript.py
link|improve this answer
Do I still need to use "#!/usr/bin/python" to specify my Python interpreter in my script? But my virtualenv might point to a different interpreter. This is where I'm confused. – Continuation Nov 11 '10 at 1:33
2  
You may want to take a look at what bin/activate is doing. Activating a virtualenv is basically just modifying your PATH env var to point to specific versions of commands, like python, etc. If you activate a virtualenv, then try to run /usr/bin/python, you may or may not be using the version of python that your virtualenv is expecting. Rather than doing "#!/usr/bin/python" you can do "#!/usr/bin/env python" to let the env decide which python to run, based on your PATH. – Andy White Nov 11 '10 at 1:40
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.