Spaces:
Runtime error
Runtime error
File size: 997 Bytes
5f76f26 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 |
The error indicates missing NVIDIA Container Toolkit. Here's how to resolve it:
curl -fsSL https://nvidia.github.io/libnvidia-container/gpgkey | sudo gpg --dearmor -o /usr/share/keyrings/nvidia-container-toolkit-keyring.gpg
Copy
Execute
curl -s -L https://nvidia.github.io/libnvidia-container/stable/deb/nvidia-container-toolkit.list | \
sed 's#deb https://#deb [signed-by=/usr/share/keyrings/nvidia-container-toolkit-keyring.gpg] https://#g' | \
sudo tee /etc/apt/sources.list.d/nvidia-container-toolkit.list
Copy
Execute
sudo apt-get update
Copy
Execute
sudo apt-get install -y nvidia-container-toolkit
Copy
Execute
sudo nvidia-ctk runtime configure --runtime=docker
Copy
Execute
sudo systemctl restart docker
Copy
Execute
After installing the NVIDIA Container Toolkit and restarting Docker, run your containers again:
docker compose up -d
Copy
Execute
This will enable proper GPU access for your CosyVoice container.
Try again with different context
Add context... |