Created
February 7, 2014 20:18
-
-
Save solusipse/8870916 to your computer and use it in GitHub Desktop.
Python 3 - env for Pyramid
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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