内容简介:方法参考:设置语言:Notepad++ ->"language"菜单->"P"按钮->"python"#!/usr/bin/python3
一、先确保Windows电脑上先安装 Python 解释器
方法参考: https://www.linuxidc.com/Linux/2018-10/154602.htm
二、打开notepad++,写一段任意python程序
设置语言:Notepad++ ->"language"菜单->"P"按钮->"python"
#!/usr/bin/python3
print("Hello, World!")
三、设置运行环境
a.“RUN”->"RUN.."
在填充处添加:cmd /k D:\"Program Files (x86)"\python\python.exe "$(FULL_CURRENT_PATH)" & ECHO. & PAUSE & EXIT
D:\Program Files (x86)\python\python.exe是python安装的目录,Program Files (x86)因为存在空格,一定要用“”括起来,否则执行时会报错
b.设置好以后,可以“save...”设置run的快捷键,方便以后使用。
四、运行程序
返回如下界面即配置完成
Linux公社的RSS地址 : https://www.linuxidc.com/rssFeed.aspx
本文永久更新链接地址: https://www.linuxidc.com/Linux/2018-10/154603.htm
以上所述就是小编给大家介绍的《Notepad++实现Python运行》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:- 使用Elm实现生产系统运行零异常
- 基于SpringBoot的代码在线运行的简单实现
- Composer 的 Autoload 源码实现——注册与运行
- 工业微服务实现工业APP高效开发和运行
- Java实现终止线程池中正在运行的定时任务
- 使用SpringBoot实现在运行时动态创建Spring Bean
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Nature of Code
Daniel Shiffman / The Nature of Code / 2012-12-13 / GBP 19.95
How can we capture the unpredictable evolutionary and emergent properties of nature in software? How can understanding the mathematical principles behind our physical world help us to create digital w......一起来看看 《The Nature of Code》 这本书的介绍吧!