gpt4 book ai didi

python - 无法在 Python 中导入 ftputil

转载 作者:行者123 更新时间:2023-12-04 07:54:18 27 4
gpt4 key购买 nike

我正在尝试使用 Spyder(python 3.8)删除 ftp 文件,但其中一个导入“ ftputil ”不起作用。错误代码看起来像

import ftputil ModuleNotFoundError: No module named 'ftputil'


代码
 #! /usr/bin/python
import time
import ftputil
host = ftputil.FTPHost('host', 'username', 'password')
mypath = 'ftp_dir'
now = time.time()
host.chdir(mypath)
names = host.listdir(host.curdir)
for name in names:
if host.path.getmtime(name) < (now - (3600)):
if host.path.isfile(name):
host.remove(name)
host.close()
如果它不起作用,我们可以使用另一个导入。

最佳答案

尝试使用以下说明安装它:

conda install -c conda-forge ftputil
欲了解更多信息,请查看此 page

关于python - 无法在 Python 中导入 ftputil,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66780064/

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