Bi conceived to do a personalized music recommendation system, really started from scratch, through the "recommendation system practice" roughly understand some basic knowledge, is currently gnawing "collective wisdom programming."
The chosen development environment is Eclipse+pydev.
Installing the JDK
Configuring Environment variables
Install Python
Just started to install a 32-bit, but also a little careless, http://python.org/download/.
After installing the configuration environment variables:
Click the environment variable, advanced, System, Control Panel. Locate the path variable in system variables, edit the variable, and add the Python installation path to its end.
Test if Python is installed successfully: Windows+r->cmd->python, you can see the Python version.
Installing the plugin Pydev
Download Pydev plugin, http://www.newasp.net/soft/76839.html#downloaded
After extracting the Pydev plugin, you will find features, plugins two folders, and then move the files under the features folder to the D:\eclipse\features directory and move the files under the Plugins folder to D:\eclipse\ The plugins directory.
Finally, restart Eclipse.
Unsuccessful Installation experience:
At first it was also in Help->install new software->add:
Whether you choose to show only the latest version, only the latest version of the 5.x. And I don't know why.
Finally in the windows->preferences inside cannot find Pydev, should be Python and Pydev version does not match.
Configuring the Pydev Plugin
Windows->preferences->pydev->interpreter-python,new a Python interpreter, fill in the Interpreter name and path, and select the appropriate python.exe for the path.
Test
File->new->project, choose Pydev under the Pydev project,grammer and interpreter Select the appropriate version, Finish.
Right-click on the PyDev Package Explorer project, New->pydev Module, fill in the project name, Finish. Then write a few lines of code and Run to select Python Run,ok in the popup dialog box.
Note1:windows python IDE (Eclipse+pydev)