Find the IDE that collects Python and analyze their pros and cons, choose your favorite IDE to build their own webpy and Django environment, and finally take a screenshot of the job. Pycharmpycharm is a python IDE created by JetBrains. Pycharm has the functionality of the general Python IDE, such as: debugging, syntax highlighting, project management, code jumps, smart tips, AutoComplete, Unit testing, versioning, and more. In addition, Pycharm offers some great features for Django development, while supporting Google App Engine, and, even cooler, Pycharm supports IronPython. Pycharm official: Http://www.jetbrains.com/pycharm/download/Sublinme text 2Sublime text has a beautiful user interface and powerful features such as code thumbnails, Python plugins, Code snippets, and so on. You can also customize key bindings, menus, and toolbars. The main features of Sublime Text include: Spell checker, bookmarks, full Python API, Goto feature, instant item switching, multiple selection, multiple windows, and more. Sublime Text is a cross-platform editor that supports operating systems such as Windows, Linux, Mac os X. ECLIPSE+PYDEV1, install eclipseeclipse can be found and downloaded on its official website eclipse.org, usually we can choose the appropriate version of Eclipse, such as Eclipse Classic. After the download is complete, unzip to the directory you want to install. Of course, before you execute eclipse, you must confirm that you have installed the Java Runtime Environment, that is, you must install the JRE or JDK, and you can find the JRE to download and install it (http://www.java.com/en/download/manual.jsp). Reference: http://www.runoob.com/python/python-ide.html build their own webpy and Django environment Webpypip install web.py>>> Import Web >>> Print Web.__version__0.37>>>djangopip install django==1.7.7>>> import django>> > Print (django.get_version ()) 1.7.7C:\python27\liao>django-admin Startproject MYSITEC:\PYTHON27\LIAO>CD mysitec:\python27\liao\mysite> Python manage.py runserverperforming System checks ... System Check identified no issues (0 silenced). You have unapplied migrations; Your app properly until they is applied. Run ' python manage.py migrate ' to apply them. March, 2016-23:15:55django version 1.7.7, using Settings ' mysite.settings ' starting development Server at http://127.0 .0.1:8000/quit the server with Ctrl-break.
Python Web Framework Enterprise actual combat (sixth phase) \ Lesson-webpy&django