Skip to content

Instantly share code, notes, and snippets.

@alexrios
Created December 29, 2023 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexrios/690a1e7d172b0620be98d60fbbc73303 to your computer and use it in GitHub Desktop.
Save alexrios/690a1e7d172b0620be98d60fbbc73303 to your computer and use it in GitHub Desktop.
nix shell for OpenAI Whisper
{ 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