执行python scripts-windows

时间:2012-08-08 19:56:49

标签: python windows cmd

如何在启动pyqt4 gui之前执行python脚本?基本上,当用户启动应用程序时,CMD控制台启动并运行python脚本,我该怎么做?

2 个答案:

答案 0 :(得分:0)

默认情况下使用python打开* .py脚本。在Linux上,可以通过添加#!/usr/bin/python作为第一行然后chmod u+x your-script.py来实现。在Windows中,可以在Right Click on file -> Open With -> Other -> [select Python.exe] -> [check Always open with selected] -> Okdoing some changes in Windows Registry中完成。

答案 1 :(得分:0)

编写批处理文件包装器:

Run_program.bat:

python script1.py
python script2.py
run_program.exe