I always use eclipse to develop JAVA application. These days I’m interested in django, a python web framework. As a eclipse fan, Ichoose pydev as my python development IDE involuntarily. In fact, it’s definitly a good choice for me.
I assume you have installed appropriate version of eclipse and python. I installed aptana, a web development plugin of eclipse, which contains pydev.
In eclipse, select Window -> Preferences menu, expand “PyDev” item and click ”Interpreter Python”, then add a new interpreter which point to your python installation path.
Now we can create our django project. In the new project wizard, we choose django project, after selecting the python interpreter, ther wizard will ask you the database configuration. When you finish the wizard, a django project has been created and four core files have existed. Right click the new project and choose “Run As”->”Pydev:Django” to launch the django project. Open the browser and browse http://localhost:8000. If there no errors occoured, we will see the django’s welcome page.
