mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +08:00
update pytorch version and colab
This commit is contained in:
parent
7edfe16a17
commit
5523a72adc
@ -33,11 +33,8 @@
|
|||||||
"condacolab.install_from_url(\"https://repo.anaconda.com/miniconda/Miniconda3-py39_23.11.0-2-Linux-x86_64.sh\")\n",
|
"condacolab.install_from_url(\"https://repo.anaconda.com/miniconda/Miniconda3-py39_23.11.0-2-Linux-x86_64.sh\")\n",
|
||||||
"%cd -q /content\n",
|
"%cd -q /content\n",
|
||||||
"!git clone https://github.com/RVC-Boss/GPT-SoVITS\n",
|
"!git clone https://github.com/RVC-Boss/GPT-SoVITS\n",
|
||||||
"!conda install -y -q -c pytorch -c nvidia cudatoolkit\n",
|
|
||||||
"%cd -q /content/GPT-SoVITS\n",
|
"%cd -q /content/GPT-SoVITS\n",
|
||||||
"!conda install -y -q -c conda-forge gcc gxx ffmpeg cmake -c pytorch -c nvidia\n",
|
"!bash install.sh"
|
||||||
"!/usr/local/bin/pip install -r extra-req.txt --no-deps\n",
|
|
||||||
"!/usr/local/bin/pip install -r requirements.txt"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -48,13 +48,13 @@ fi
|
|||||||
|
|
||||||
if [ "$USE_CUDA" = true ]; then
|
if [ "$USE_CUDA" = true ]; then
|
||||||
echo "Installing PyTorch with CUDA support..."
|
echo "Installing PyTorch with CUDA support..."
|
||||||
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=11.8 -c pytorch -c nvidia
|
pip install torch==2.5.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/cu124
|
||||||
elif [ "$USE_ROCM" = true ]; then
|
elif [ "$USE_ROCM" = true ]; then
|
||||||
echo "Installing PyTorch with ROCm support..."
|
echo "Installing PyTorch with ROCm support..."
|
||||||
pip install torch==2.5.1 torchvision==0.20.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/rocm6.2
|
pip install torch==2.5.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/rocm6.2
|
||||||
else
|
else
|
||||||
echo "Installing PyTorch for CPU..."
|
echo "Installing PyTorch for CPU..."
|
||||||
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 cpuonly -c pytorch
|
pip install torch==2.5.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/cpu
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Installing Python dependencies from requirements.txt..."
|
echo "Installing Python dependencies from requirements.txt..."
|
||||||
|
Loading…
x
Reference in New Issue
Block a user