Python installation and development environment setup, python Development and Building
1. Check "Add Python 3.5 to PATH" on the official website: "Environment". You do not need to configure environment variables, then select install now 2. You can also manually configure the environment variable system variable -- path, for example, C: \ python36 \ 3. verify whether the installation is successful. You can enter python in the command line, press enter. If the following prompt is displayed, it indicates that it can be used normally, but I still encountered this problem during the installation process: prompt me to download the python34.dll file from my computer and copy it to the corresponding directory python34.dll to the C: \ Windows \ System32 directory (corresponding to the 32-bit System) python34.dll to C: \ Windows \ SysWOW64 directory (corresponding to a 64-bit System)Build Pydev plug-in eclipse1. Open eclipse and click Help-> Install New Software... in the pop-up dialog box, click Add. Enter "Pydev" in "Name" and "Location" in "http://pydev.org/updates". After the installation is complete, restart the system. 2. Configure the Pydev parser and click" Windows-> Preferences ". In the dialog box, click" pyDev-> Interpreter. click the New button and select the path of python.exe. A window containing multiple check boxes is displayed. click OK.
For Mac systems, click "Auto Config ".
3. Create Python projects and packages and write python scripts.
Start Eclipse and create a New project, File-> New-> Projects... select PyDev-> PyDevProject and enter the project name.
Enter the script and execute it.
PyCharm Integrated Development Tool
You can go to the official website to download and install the SDK (for specific installation instructions)