无法在 Python 中导入 ftputil
Unable to import ftputil in Python
我正在尝试使用 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
我正在尝试使用 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