Django 1.6 for Python 3: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
using <code>virtualenv</code> with Python 3 | using <code>virtualenv</code> with Python 3 | ||
http://djangosteps.wordpress.com/2013/09/25/setup-a-virtualenv-for-python3/ | http://djangosteps.wordpress.com/2013/09/25/setup-a-virtualenv-for-python3/ | ||
<pre> | <pre> | ||
mkvirtualenv --python=/usr/bin/python3 python3 | mkvirtualenv --python=/usr/bin/python3 python3 | ||
Line 9: | Line 6: | ||
* <code>deactivate</code> to get out of virtualenv | * <code>deactivate</code> to get out of virtualenv | ||
* <code>workon python3</code> to get back in | * <code>workon python3</code> to get back in | ||
creating a project: | |||
http://www.jeffknupp.com/blog/2013/12/18/starting-a-django-16-project-the-right-way/ |
Latest revision as of 00:47, 10 January 2014
using virtualenv
with Python 3
http://djangosteps.wordpress.com/2013/09/25/setup-a-virtualenv-for-python3/
mkvirtualenv --python=/usr/bin/python3 python3
deactivate
to get out of virtualenvworkon python3
to get back in
creating a project:
http://www.jeffknupp.com/blog/2013/12/18/starting-a-django-16-project-the-right-way/