我已设置setup.py,以从我从项目的虚拟环境生成的requirements.txt中获取依赖项。如下:
在我的视线中:
pip3 freeze > requirements.txt
然后:
with open('requirements.txt') as f:
required = f.read().splitlines()
setuptools.setup(
...
install_requires=required,
...
)
但是,当我尝试安装软件包时,显示了此错误:
raise RequirementParseError(str(e))
pip._vendor.pkg_resources.RequirementParseError: Parse error at "'(===file'": Expected stringEnd
因此,在检查我的requirements.txt文件时,我发现这必须是软件包安装失败的根本原因:
avro-python3===file-.avro-VERSION.txt
我没有明确安装它,这是一个传递依赖。当我尝试安装avro-python3时,出现以下错误:
Requirement already satisfied: avro-python3 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (file-.avro-VERSION.txt)
该如何解决我的问题?
谢谢。
答案 0 :(得分:2)
发生此错误是因为setup
方法不希望版本具有file-.avro-VERSION.txt
格式。我怀疑字符“-”会困扰解析器,因为它期望字符串结尾而不是该字符。
我建议您尝试使用requirements.txt
文件上的the official versions之一,问题应该消失了。