Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
每次我使用 sdist 使用以下命令创建 MANIFEST 文件时:
'python setup.py sdist --manifest-only'
终端始终输出此错误消息。
错误:选项 --manifest-only 无法识别
我不知道为什么,正在寻求帮助。
我猜你用
from setuptools import setup
在你 setup.py ?Setuptools 似乎不支持此选项。我更喜欢坚持标准的 Python 方式并使用:
from distutils.core import setup