我无法通过双击执行.pyw文件

时间:2019-03-15 02:15:28

标签: python

我无法通过双击运行test.pyw文件,这是我的代码:

infer_vector()

我确定我的python env可以正常工作,因为我可以通过命令行from win10toast import ToastNotifier toast = ToastNotifier() toast.show_toast('test title','test content') 运行代码,但是在将扩展名更改为python test.py后,无法通过双击运行它。 我也可以运行另一个test.pyw,双击它创建的demo.pyw,这是1.txt的代码:

demo.pyw

这是因为我使用了第三方软件包import time fout = open('e:\\1.txt','w') tmp = '%d-%02d-%02d %02d:%02d:%02d \r\n' % time.localtime()[0:6] print(tmp) fout.write(tmp) fout.flush() 吗?

0 个答案:

没有答案