gpt4 book ai didi

Python os.startfile 在 ubuntu 服务器中停止工作

转载 作者:行者123 更新时间:2023-12-04 18:37:00 56 4
gpt4 key购买 nike

我有一个每天由 cron 运行的小脚本,过去 3 个月一直在工作。

9 月 30 日,它停止工作并出现以下错误:

File "NumberChecker.py", line 32, in start_server os.startfile(startfile[0]) AttributeError: 'module' object has no attribute 'startfile'



这是该位的代码:
def start_server(xml):
startfile = xml.xpath('/config/files/startfile/text()')
try:
driver = webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.HTMLUNIT)
driver.get('http://www.google.com')
except:
print('no server')
server_status = 'down'
os.startfile(startfile[0])
while server_status == 'down':
try :
driver = webdriver.Remote(desired_capabilities=webdriver.DesiredCapabilities.HTMLUNIT)
driver.get('http://www.google.com')
server_status = 'running'
except :
pass

它只是通过请求 google 来测试 selenium 服务器是否启动,如果没有则调用启动它的 bash 脚本。

为什么 os.startfile 会突然停止工作?

我在命令行尝试过这个:
import os
os.startfile(home/adam/file/start_server.sh)

我得到

File "< stdin >", line 1, in AttributeError: 'module' object has no attribute 'startfile'



我只是无法弄清楚为什么它刚刚停止工作?

它是虚拟环境中的python 3.3,操作系统是ubuntu server 12.04

最佳答案

os.startfile 是一种特定于 Windows 的方法,它不适用于 linux。

关于Python os.startfile 在 ubuntu 服务器中停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19143443/

56 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com