Created
December 29, 2023 19:29
-
-
Save alexrios/690a1e7d172b0620be98d60fbbc73303 to your computer and use it in GitHub Desktop.
nix shell for OpenAI Whisper
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs ? import <nixpkgs> {}} : | |
pkgs.mkShell { | |
buildInputs = [ | |
pkgs.python3 | |
pkgs.poetry | |
pkgs.python311Packages.torch | |
pkgs.ffmpeg_5-full | |
pkgs.openai-whisper | |
]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment