通常,当我运行python程序时,我需要打开一个终端并输入类似
的内容python program.py
但我想在没有在Windows上运行的终端(或类似的窗口)运行这个python程序。但它无论如何都会运行,就像Google Drive一直在我的电脑上运行而没有任何窗口弹出。这可能吗? (我启动Windows后立即运行此程序。)
答案 0 :(得分:0)
如果在Linux上,请尝试:
update products set class = 'A' where product_id = 'A001';
update products set class = 'B' where product_id = 'A005';
update products set class = 'Z' where product_id = 'A150';
答案 1 :(得分:0)
在Windows上有一个名为sc.exe的exe,可以使服务在后台运行。 语法如下所示:
sc [servername] create MYService binpath="c:\anaconda\bin\python.exe c:\scripts\myprog.py" start=auto
虽然我不确定你是否必须将binpath放在引号中,或者只是把整个东西放在一个bat文件中然后运行它。