Open1

seed-vcの環境構築メモ

arkearke

https://github.com/Plachtaa/seed-vc
uvで環境構築。
動作環境:

  • Ubuntu 22.04 (WSL2)
  • CUDA: 11.8
  • GPU: RTX 3090
pyproject.toml
[project]
name = "seed-vc"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
  "torch==2.4.1+cu118",
  "torchvision==0.19.1+cu118",
  "torchaudio==2.4.1+cu118",
  "scipy==1.13.1",
  "librosa==0.10.2",
  "huggingface-hub>=0.26.1",
  "munch>=4.0.0",
  "einops>=0.8.0",
  "descript-audio-codec>=1.0.0",
  "gradio>=5.3.0",
  "pydub>=0.25.1",
  "resemblyzer>=0.1.4",
  "jiwer>=3.0.4",
  "transformers>=4.45.2",
  "onnxruntime>=1.19.2",
  "openai-whisper",
  "numpy==1.26.4",
]

[tool.uv]
find-links = [
  "https://download.pytorch.org/whl/cu118/torch",
  "https://download.pytorch.org/whl/cu118/torchvision",
  "https://download.pytorch.org/whl/cu118/torchaudio",
]

[tool.uv.sources]
openai-whisper = { git = "https://github.com/openai/whisper.git" }