Python script doesn#39;t work with double click(Python脚本不适用于双击)
问题描述
我有一个非常基本的问题,但我无法在旧答案中找到解决方案.当我双击 python 脚本时,我可以看到一个提示闪烁,但没有任何反应.如果我用 IDLE 打开相同的脚本并运行它,一切正常.为了确保脚本没有正确执行,我制作了一个这样的测试脚本:
I have a very basic problem, but I cannot find a solution in older answers. When I double click on a python script, I can see a prompt flashing but nothing happens. If I open the same script with IDLE and run it, everything works fine. To be sure the script was not executing propoerly, I made a test script like this:
def main():
files = open('test.txt','a')
files.write('this is a test')
如果通过空闲启动,简单脚本会写入文件,但如果我双击它,则不会发生任何事情.我尝试使用 .py 和 pyw 扩展名以及不止一台(Windows)电脑.我将python文件夹添加到路径中无济于事.
The simple script write the file if launched thru idle, but nothing happens if if I double click it. I tried with both .py and pyw extension and in more than one (windows) pc. I added the python folder to the path with no avail.
谢谢!
推荐答案
确保脚本包含这段代码:
Make sure that the script includes this snippet of code:
if __name__ == "__main__":
# call your code here
main()
这是从命令行运行的脚本的执行入口点,例如 C/C++/Java/C# 中的 main()
函数.在 this 帖子中了解更多信息.
That's the execution entry point for a script running from the command line, like the main()
function in C/C++/Java/C#. Read more about it in this post.
另外,不要忘记显而易见的 - 为脚本提供正确的执行权限,确保 python.exe
命令在 %PATH%
中可用环境变量等.
Also, don't forget the obvious - give the right execution permissions to the script, make sure that the python.exe
command is available in the %PATH%
environment variable, and so on.
这篇关于Python脚本不适用于双击的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Python脚本不适用于双击
基础教程推荐
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 筛选NumPy数组 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01