Python How To Run From Notepad++

Still now there is no plugin for notepad++ to run python Code .

So we need a solution and here is it:

  1. Install Python on your Windows 10 computer .Then open the notpad++ as a Administrator
  2. Click on the Run menu then add this line cmd /k C:\Users\DhakaWasa\AppData\Local\Programs\Python\Python37-32\python.exe "$(FULL_CURRENT_PATH)"
  3. Here C:\Users\DhakaWasa\AppData\Local\Programs\Python\Python37-32\ is directory where my python interpreter installed and the python.exe is the python interpreter.
  4. "$(FULL_CURRENT_PATH)" this return the my source code location with its name.
  5. cmd /k it is used for  stayed open Cmd window after script finished.

Hopefully now you can configure notepad++ for your PYTHON.