These are the steps I took to get Pyramid Running on a shared host.
note: The default python was 2.6 and the shell account came with easy_install preinstalled
echo "export PYTHONPATH=~/tools:$PYTHONPATH" >> ~/.bash_profile
echo "export PATH=~/tools:$PATH" >> ~/.bash_profile
source .bash_profile
mkdir ~/tools
easy_install --install-dir ~/tools virtualenv
virtualenv --no-site-packages env
cd env
bin/easy_install pyramid
You should see lots of output similar to this:

When you see 'Finished processing dependencies for pyramid', you're good.
1 comment:
Post a Comment