I have a problem setting up a Virtualenv on my web host server (to install python modules later on)
So far I tried this (over SSH):
wget http://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.5.2.tar.gz
tar xzf virtualenv-1.5.2.tar.gz
~/usr/lib/python2.4 virtualenv-1.5.2/virtualenv.py ~/data/env
and
~/usr/lib/python2.4 setup.py install
I don't get any errors or output and cannot find the ~/data/env-directory that should be created. What is going wrong? Or what is the next step?