安装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

你可能感兴趣的:(whisper,rust)