Since you are using Django, you must first configure PyDev in Eclipse. You can install it from the market. Then you want to configure the PyDev Python interpreters to look for your Django installation ( http://pydev.org/manual_101_interpreter.html ). Be sure to provide an explicit path to the Django folder if your Django is not installed in the default location.
Once everything is ready, you can choose File> New> Other, then select PyDev Django Project from the PyDev subdirectory.
Click “Next”, and here's the sweetness: Uncheck the “Use by default” box (as mentioned earlier), and then find the Django project directory. Be sure to select the desired project folder ( manage.py .: the folder containing manage.py ). When you select the desired folder, Eclipse / PyDev finds out that the project already exists and mentions that it will use these files. Click Finish.
Then a database form appears that asks for the settings for your database. If you already have the settings.py file, then this does not make any changes (as it should not). So fill it or not. But this is the last step.
You can then view and use your existing project in Eclipse!
e.thompsy Feb 20 '14 at 21:01 2014-02-20 21:01
source share