安装 python 包 Flair 时出错,关于未在 PyPI 中托管的依赖包
Error in installing python package Flair, about a dependent package not hosted in PyPI
我正在尝试安装 flair
。执行以下命令时抛出以下错误:
pip install flair
错误:从 PyPI 安装的包不能依赖于未托管在 PyPI 上的包。<br>
tiny-tokenizer 依赖于 SudachiDict_core@ https://object-storage.tyo2.conoha.io/v1/nc_2520839e1f9641b08211a5c85243124a/sudachi/SudachiDict_core-20190927.tar.gz
我认为明确安装此包可能会修复错误,但事实并非如此。错误保持不变。
SudachiDict-core 的安装版本如下:
SudachiDict-core 0.0.0
环境如下:
- OS: Windows 10
- Python: 3.6(64 位)
感谢任何提示。谢谢!
注:
- 安装 flair 的第一个障碍是
torch
包。它在安装 torch 包时简单地解决了。错误如下所示:
ERROR: Could not find a version that satisfies the requirement torch>=1.1.0 (from flair) (from verERROR: No matching distribution found for torch>=1.1.0 (from flair)
很奇怪 运行 下面的命令解决了这个问题。
pip install flair==0.4.3
我假设问题出在最新版本 0.4.4(及其依赖项)中。
注意:我已经安装了 torch==1.1.0
包。
你可以试试
pip install --upgrade git+https://github.com/zalandoresearch/flair.git
来源:https://github.com/flairNLP/flair/issues/1327#issuecomment-571639994
或者
单独安装:
pip install tiny-tokenizer
之后运行:
pip install flair
我正在尝试安装 flair
。执行以下命令时抛出以下错误:
pip install flair
错误:从 PyPI 安装的包不能依赖于未托管在 PyPI 上的包。<br>
tiny-tokenizer 依赖于 SudachiDict_core@ https://object-storage.tyo2.conoha.io/v1/nc_2520839e1f9641b08211a5c85243124a/sudachi/SudachiDict_core-20190927.tar.gz
我认为明确安装此包可能会修复错误,但事实并非如此。错误保持不变。
SudachiDict-core 的安装版本如下:
SudachiDict-core 0.0.0
环境如下:
- OS: Windows 10
- Python: 3.6(64 位)
感谢任何提示。谢谢!
注:
- 安装 flair 的第一个障碍是
torch
包。它在安装 torch 包时简单地解决了。错误如下所示:ERROR: Could not find a version that satisfies the requirement torch>=1.1.0 (from flair) (from verERROR: No matching distribution found for torch>=1.1.0 (from flair)
很奇怪 运行 下面的命令解决了这个问题。
pip install flair==0.4.3
我假设问题出在最新版本 0.4.4(及其依赖项)中。
注意:我已经安装了 torch==1.1.0
包。
你可以试试
pip install --upgrade git+https://github.com/zalandoresearch/flair.git
来源:https://github.com/flairNLP/flair/issues/1327#issuecomment-571639994
或者
单独安装:
pip install tiny-tokenizer
之后运行:
pip install flair