Skip to content

Instantly share code, notes, and snippets.

@solusipse
Created February 7, 2014 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save solusipse/8870916 to your computer and use it in GitHub Desktop.
Save solusipse/8870916 to your computer and use it in GitHub Desktop.
Python 3 - env for Pyramid
python3.3 -m venv app-env
cd app-env/
source bin/activate
curl -O http://python-distribute.org/distribute_setup.py
python distribute_setup.py
bin/easy_install pyramid
bin/pcreate -s alchemy app
cd app
python setup.py develop
cd ..
bin/pserve appn/development.ini
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment