- Install Virtualenv (python)
- Create new env (
virtualenv --no-site-packages myenv
) - Activate the new env (
source myenv/bin/activate
) - Install pyramid (
easy_install pyramid
) - Download this code (
git clone git://github.com/renatopp/pyramid-blog.git
) - Install dependences (
python setup.py develop
) - Run server (
paster serve --reload development.ini
) - http://127.0.0.1:6543 =]