当使用sudo pip3 install atd尝试为python 3.6下载“截止日期之后”模块atd时,出现以下错误:

Failed to build atd
Installing collected packages: atd
Running setup.py install for atd ... error
Complete output from command /usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-tfcxr6us/atd/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-xsek23ca-record/install-record.txt --single-version-externally-managed --compile:
running install
running build
running build_py
creating build
creating build/lib
creating build/lib/atd
copying atd/__init__.py -> build/lib/atd
copying atd/atd.py -> build/lib/atd
running build_scripts
creating build/scripts-3.6
error: file '/tmp/pip-build-tfcxr6us/atd/bin\atddir.py' does not exist
----------------------------------------
Command "/usr/bin/python3 -u -c "import setuptools, tokenize;__file__='/tmp/pip-build-tfcxr6us/atd/setup.py';f=getattr(tokenize, 'open', open)(__file__);code=f.read().replace('\r\n', '\n');f.close();exec(compile(code, __file__, 'exec'))" install --record /tmp/pip-xsek23ca-record/install-record.txt --single-version-externally-managed --compile" failed with error code 1 in /tmp/pip-build-tfcxr6us/atd/

最佳答案

软件包atd是McAfee ATD API的连接器。是你想要的吗?

该软件包已过时,因为其setup.py使用ez_setup,早已弃用并从setuptools中删除​​。该软件包自2015年以来未更新。

该软件包仅用于Windows,因为其setup.py声明了脚本bin\\atddir.py

我确定该模块不可用。也许这不是您想要的。您正在寻找什么“截止日期之后”的模块?

10-08 07:52