gpt4 book ai didi

PythonAnywhere 脚本调度程序不工作

转载 作者:太空宇宙 更新时间:2023-11-03 15:44:45 30 4
gpt4 key购买 nike

我有一个 python 脚本,当我转到文件并点击运行时,它可以正常运行。但是,当调度程序运行脚本时,该脚本会失败。可能是什么原因造成的?

这是我的脚本:

import time
import os
import shutil
import stat

for i in os.listdir():
if os.path.isdir(i):
shutil.rmtree(i)

这是我在调度程序运行时遇到的错误

Traceback (most recent call last):
File "filepath/myscript.py", line 7, in <module>
for i in os.listidir():
TypeError: listdir() takes exactly 1 argument (0 given)

2017-01-25 17:10:12 -- Completed task, took 0.00 seconds, return code was 1.

我很困惑为什么当我手动运行它时它会起作用,但当计划运行它时却不起作用。

最佳答案

您正在 2 个不同的 Python 版本下运行它。 Python 2 需要路径,但 Python 3 是可选的,默认为“.”。

关于PythonAnywhere 脚本调度程序不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41857845/

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