Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add rust as a dependency #30

Merged
merged 2 commits into from
Sep 23, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add rust as a dependency
  • Loading branch information
gglanzani committed Sep 22, 2022
commit 26619bb3823ef1ce2d9c06eac8342ea03e007776
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,19 @@ We used Python 3.9.9 and [PyTorch](https://pytorch.org/) 1.10.1 to train and tes

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

It also requires the command-line tool [`ffmpeg`](https://ffmpeg.org/) to be installed on your system, which is available from most package managers:
It also requires the command-line tool [`ffmpeg`](https://ffmpeg.org/) and [`rust`](http:https://rust-lang.org) to be installed on your system, which are available from most package managers:

```bash
# on Ubuntu or Debian
sudo apt update && sudo apt install ffmpeg
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# on MacOS using Homebrew (https://brew.sh/)
brew install ffmpeg
brew install ffmpeg rust

# on Windows using Chocolatey (https://chocolatey.org/)
choco install ffmpeg
choco install rust
```


Expand Down