How to get notepad++ editor and shell to work together in python? -
i'm learning python using book "learn python hard way", i'm stuck in beginning. how can windows shell , notepad++ work together? when run python on terminal, doesn't show file saved on notepad++ editor.
as earlier user noted, notepad++ editor, run code shell. if want integrated solution, can use ide idle (which comes python) or eclipse pydev.
if want use notepad++, first thing after opening shell connect working directory. i.e., if you're saving code in c:\temp
, cd c:\temp
. next, dir
command , should see files. here, can execute scripts shell.
Comments
Post a Comment