属性错误:模块'pypandoc'没有属性'convert'



我正在尝试将python项目切换到诗歌& &;pyproject.toml。以前,我们使用的是requirements.txt。

当我试图安装pyspark 2.4.8与诗歌,然而,我遇到了这个错误:

File "<string>", line 156, in <module>
AttributeError: module 'pypandoc' has no attribute 'convert'
[end of output]
note: This error originates from a subprocess, and is likely not a problem with pip.
error: metadata-generation-failed

有人遇到这个吗?你知道为什么这是诗歌的问题,而不是requirements.txt的问题吗?

似乎你需要降级它,因为'convert'在1.8版本中被删除了。https://github.com/man-group/pytest-plugins/issues/87

我解决了这个问题:

pip install pypandoc==1.5

相关内容

  • 没有找到相关文章

最新更新