由于triton安装错误,Python Poetry无法添加openai-whisper

vojdkbi0  于 2023-05-30  发布在  Python
关注(0)|答案(1)|浏览(821)

所以我试着用openai-whisper。我用诗歌作为我的环境和依赖管理器。但在尝试下载时不断出现错误。我得到的错误是,安装triton(2.0.0):失败
我尝试了典型的诗歌添加,这是错误的

poetry add openai-whisper 
Using version ^20230314 for openai-whisper

  • Installing triton (2.0.0): Failed

  RuntimeError

  Unable to find installation candidates for triton (2.0.0)

  at /usr/local/Cellar/poetry/1.4.2/libexec/lib/python3.11/site-packages/poetry/installation/chooser.py:109 in choose_for
      105│ 
      106│             links.append(link)
      107│ 
      108│         if not links:
    → 109│             raise RuntimeError(f"Unable to find installation candidates for {package}")
      110│ 
      111│         # Get the best link
      112│         chosen = max(links, key=lambda link: self._sort_key(package, link))
wpx232ag

wpx232ag1#

很可能triton不适用于您的平台+ Python版本的组合。
当我偶然发现类似的问题时,我尝试通过pip(pip install triton==2.0.0)手动安装软件包,这通常会给我更详细的错误信息。
如果这没有帮助,请更新以下问题:

  • pyproject.toml中的Python版本是什么?
  • 你的政纲是什么?

相关问题