tags: python Notepad++ running python
1, the installation environment:
3, the configuration is successful
Notepad++, python (When installing python, remember to check the option to add python to the path, the default is not selected)
Click menurun -> run...

Enter the following command:
cmd /k python "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT
then click Save...Pop up the save dialog box, enter the name (you can just enter it yourself), you can also set the shortcut key, pay attention to the shortcut key settings do not conflict with the existing, otherwise the bottom will pop upCONFLICT FOUND!This is because I have configured Ctrl+F5 to run python shortcuts, so I will get an error, generally there should be no problem.

Click on notepad++runThere should be a RunPython item in the menu, as shown below:

Open a python source file in notepad++ and press Ctrl+shift+A to run
cmd /k python "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT
Note: When configuring the tensorflow environment, Python can be replaced with python in the bin directory of the created tensorflow environment.
First, you need to set some content, make NotePad ++ more well 1, set the indentation to 4 spaces Setting - Preferences - Language - Table Width 4, Replace with Space (Check) 2, set up new time defaul...
In the Baidu search "notepad ++" or enterOfficial websiteDownload and install notepad ++. Indent Code: python is to use tab to indent, open the notepad ++, to find settings - Preferences - T...
Use Notepad to run java program 1. Create a text file HelloWorld.java. 2.public consistent with the class name of the text file name creation. 3.win + r cmd into the command line 4. enter the file pat...
The first step: create a text file HelloWorld.java in the e drive The second step: open cmd, enter the e disk 1. Runjavac HelloWorld.java<Add suffix name> 2. Runjava Helloworld operation result:...
New file and edit the text Run the program by command. Call the console through the Win + R, enter the CMD call system command box. Enter CD C: \ Users \ M \ Desktop (Save Directory Address), After ru...
1. Open a new file with NOTEPAD ++ Enter the following: Save file as Myfirstjava.java II.CMD enters the DOS window, enter the file storage address D: \ Java \ Project 3. Compile Javac Myfirstjava.java...
1. Create a folder, named Python here 2. Create a notepad in the file 3. Enter the code that wants to be implemented in NotepadNote: The symbol should be an English symbol! 4. Cha...
Click to go to the browser screen viewhttps://mubu.com/doc/a8VGCUfqqw First, the use Notepad ++ to edit python files, and run directly 1. Open the python file with notepad ++. Or create a new file, sa...
1. Install Python No more details 2. Configure notepad++ 1) Notepad++ -> "Run" menu -> "Run" button2) Enter the following command in the pop-up window: The red marked part is...
Fill in the running column seen online: There are 2 errors: 1. No $ is added before CURRENT_DIRECTORY and FULL_CURRENT_PATH 2. No /d added after cd Explanation: 1. $CURRENT_DIRECTORY and $FULL_CURRENT...