I. Installation of sublime Text3
1, in Baidu search sublime Text3
2, I choose the Win64 bit
3, double-click to install
4. Set Installation path
5, check Add to the Explorer context menu, so that sublime text can be added to the right key, when the right click on the file, you can directly choose to use sublime text to open
6. Start Installation
7. Installation Complete
Second, configure the Python development environment
1, the installation of Plug-ins package control (easy to browse, install, uninstall Plug-ins)
(1) Use the shortcut key "Ctrl +" (or View>show Console) to open the sublime text console
(2) to Baidu Search package control
(3) Copy the selected content in the following figure to the sublime text console
(4) to the console after hitting the carriage return will appear the following figure selected to represent the successful installation
(5) After the successful installation in the menu bar preferences will have package control
2, see Sublime text has installed which plug-ins
(1) Use the shortcut key "Ctrl+shift+p" (or preferences>packagecontrol) to pull up the command panel
(2) Enter "package" in the Drop-down list to find "package control:list packages", check the return, installed Plug-ins are displayed
3, with package control to install Plug-ins (installation Sublimecodeintel, SUBLIMEREPL, etc.)
(1) Use the shortcut key "Ctrl+shift+p" (or Preferences>package control) to pull up the command panel
(2) input install install package option and enter
(3) In the list select the plug-in to install or input plug-in name (such as to install the Sublimecodeintel plug-in, then enter the Sublimecodeintel, it will filter the results in real time ), according to the results in the command panel to choose the plug-in to install
(4) can be seen in the following figure Sublimecodeintel is being installed
(4) The following figure represents the successful installation
(5) After the installation is complete, you can view the installed plug-ins through "Preferences>package Settings"
4. Configure the Python development environment
(1) tools-->build system-->new build System
(2) after clicking on the new build system, an empty configuration file is generated, and we need to overwrite the configuration information in the configuration file .
(3) Note the following figure Red line, the configuration code needs to configure the Python installation path
(4) After the configuration is completed click Save, you can customize the filename, but be sure to use the default path, so that the configuration can take effect
(5) You can see that there are python363 compiled environments that have just been added under the Build system list
(6) switch to python363 for testing
Print out 3+6 value "ctrl+b" Compile execution code