Django 1.6 for Python 3: Difference between revisions

From Wiki
Jump to navigation Jump to search
Created page with "using <code>virtualenv</code> with Python 3 http://djangosteps.wordpress.com/2013/09/25/setup-a-virtualenv-for-python3/ creating a project: http://www.jeffknupp.com/blog/201..."
 
No edit summary
 
(One intermediate revision by the same user not shown)
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>
mkvirtualenv --python=/usr/bin/python3 python3
</pre>
* <code>deactivate</code> to get out of virtualenv
* <code>workon python3</code> to get back in


creating a project:  
creating a project:  
http://www.jeffknupp.com/blog/2013/12/18/starting-a-django-16-project-the-right-way/
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 virtualenv
  • workon python3 to get back in


creating a project: http://www.jeffknupp.com/blog/2013/12/18/starting-a-django-16-project-the-right-way/