0

在我使用 Python 3.6.9 的 Conda 环境中,我安装了 AllenNLP 9.2.0。我尝试按照https://github.com/allenai/allennlp-server的说明通过运行安装 AllenNLP 服务器pip install --editable .

然而,安装过程从未完成,因为与几个模块的兼容性检查,例如pip is looking at multiple versions of tqdm to determine which version is compatible with other requirements. This could take a while. Collecting tqdm>=4.19

有人知道这里发生了什么吗?我应该在 AllenNLP 服务器中为 steup.py 添加更多限制吗?但是,此类文件中包含任何代码。

非常感谢你的帮助。

4

1 回答 1

0

我刚刚使用 AllenNLP 2.0.1(最新)进行了尝试,虽然需要很长时间,但它最终确实解决了这些包。

也就是说,我会推荐两件事:

  1. 请改用 Python 3.8。
  2. 如果它仍然不起作用,tqdm请在需求中指定一个紧密的版本。我的版本自动选择tqdm==4.56.2,只是或参考。
于 2021-02-12T01:11:14.960 回答