安装whisper模块踩过的坑

如果你和我一样,通过以下命令安装whisper

pip install git+https://github.com/openai/whisper.git 

但却出现了fatal: unable to access 'https://github.com/openai/whisper.git/': OpenSSL SSL_read: Connection was reset, errno 10054

那么只需要
在运行pip install之前在运行以下的命令,再次重新pip install ...即可

pip install setuptools-rust

原因:
安装whisper需要先安装rust环境依赖。

官方在README.md有过说明

You may need rust installed as well, in case tiktoken does not provide a pre-built wheel for your platform. If you see installation errors during the pip install command above, please follow the Getting started page to install Rust development environment. Additionally, you may need to configure the PATH environment variable, e.g. export PATH="$HOME/.cargo/bin:$PATH". If the installation fails with No module named ‘setuptools_rust’, you need to install setuptools_rust, e.g. by running:

pip install setuptools-rust

引用:https://github.com/openai/whisper#setup

文章出处登录后可见!

已经登录?立即刷新

共计人评分,平均

到目前为止还没有投票!成为第一位评论此文章。

(0)
青葱年少的头像青葱年少普通用户
上一篇 2023年12月27日
下一篇 2023年12月27日

相关推荐