如何在notepad中运行python

2024-12-03 14:14:42
推荐回答(1个)
回答1:

1. 安装Python

1 下载

我选择了32位的2.7版本。

2. 安装

安装的时候可以修改安装路径到D盘,然后注意一点是可以将最后一项逗配置环境变量地勾选上(默认是不选择的),这样就不用手动配置环境变量了。

2. 配置Notepad++

可以参考文章【1】的方法进行配置,但是注意输入的命令是参考文章【2】的。

1. Notepad++ ->"运行"菜单->"运行"按钮

2. 在弹出的窗口内输入以下命令:

cmd /k python "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT

然后点击逗保存地,随意取一个名字,比如逗RunPython地,为方便,配置一下快捷键(比如 Ctrl + F5),点OK即可。之后运行Python文件只要按配置的快捷键或者在运行菜单上点逗RunPython地即可。

注意不要跟已有的快捷键冲突。查看已有的快捷键,可以点击"运行"菜单->"管理快捷键"按钮 查看

3. 命令解释【1】

cmd /k python "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT

cmd /k python: 表示打开Cmd窗口,运行/k后边的命令,并且执行完毕后保留窗口。此处即python(因为在环境变量里已经添加了Python目录,所以这里不用指定Python程序的目录,就可直接找到)

$(FULL_CURRENT_PATH) :Notepad++的宏定义,表示当前文件的完整路径。

& 用来连接多条命令

ECHO:换行

PAUSE: 表示运行结束后暂停(cmd中显示逗请按任意键继续. . .地),等待一个按键继续

EXIT: 表示逗按任意键继续. . .地后,关闭命令行窗口。

4. Notepad++宏定义的含义

可以参考Notepad++自带的帮助文档。

点击逗看地菜单->逗帮助地按钮(或者Shift+F1快捷键)->在打开的页面中点击右面的逗Commands地,可以查看到各个宏定义的含义

FULL_CURRENT_PATH
  the fully qualified path to the current document.
CURRENT_DIRECTORY
  The directory the current document resides in.
FILE_NAME
  The filename of the document, without the directory.
NAME_PART
  The filename without the extension.
EXT_PART
  The extension of the current document.
NPP_DIRECTORY
  The directory that contains the notepad++.exe executable that is currently running.
CURRENT_WORD
  The currently selected text in the document.
CURRENT_LINE
  The current line number that is selected in the document (0 based index, the first line is 0).
CURRENT_COLUMN
  The current column the cursor resides in (0 based index, the first position on the line is 0).

5 测试

创建一个测试文件,保存为DemoRun.py。

import platform;

print "Just for demo how to do python development under windows:";
print "Current python version info is %s"%(platform.python_version());
print "uname=",platform.uname();

Ctrl + F5执行,看是否能输出结果。