you can do:
#!/path/to/virtualenv/bin/python
in your startup script which will cause the script to load from that
environment. Cron jobs are often run this way.
At that point, you might also choose to update your environment:
import os, sys, site
sys.path.append('/path/to/pyramid/project')
site.addsitedir('/path/to/pyramid/lib/python2.6/site-packages')
--
You received this message because you are subscribed to the Google Groups
"pylons-discuss" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/pylons-discuss?hl=en.