mirror of
https://github.com/RVC-Boss/GPT-SoVITS.git
synced 2025-04-05 19:41:56 +08:00
update shell install.sh
This commit is contained in:
parent
93fef34752
commit
3d6ecf3d79
@ -1 +0,0 @@
|
|||||||
onnxruntime==0.0; sys_platform != 'darwin'
|
|
6
extra-req.txt
Normal file
6
extra-req.txt
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
faster-whisper
|
||||||
|
ctranslate2>=4.0,<5
|
||||||
|
huggingface_hub>=0.13
|
||||||
|
tokenizers>=0.13,<1
|
||||||
|
av>=11
|
||||||
|
tqdm
|
17
install.sh
17
install.sh
@ -18,7 +18,7 @@ export CC="$CONDA_PREFIX/bin/gcc"
|
|||||||
export CXX="$CONDA_PREFIX/bin/g++"
|
export CXX="$CONDA_PREFIX/bin/g++"
|
||||||
|
|
||||||
echo "Checking for CUDA installation..."
|
echo "Checking for CUDA installation..."
|
||||||
if command -v nvidia-smi &> /dev/null; then
|
if command -v nvidia-smi &>/dev/null; then
|
||||||
USE_CUDA=true
|
USE_CUDA=true
|
||||||
echo "CUDA found."
|
echo "CUDA found."
|
||||||
else
|
else
|
||||||
@ -26,7 +26,6 @@ else
|
|||||||
USE_CUDA=false
|
USE_CUDA=false
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
if [ "$USE_CUDA" = false ]; then
|
if [ "$USE_CUDA" = false ]; then
|
||||||
echo "Checking for ROCm installation..."
|
echo "Checking for ROCm installation..."
|
||||||
if [ -d "/opt/rocm" ]; then
|
if [ -d "/opt/rocm" ]; then
|
||||||
@ -48,7 +47,7 @@ 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
|
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=11.8 -c pytorch -c nvidia
|
||||||
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 torchvision==0.20.1 torchaudio==2.5.1 --index-url https://download.pytorch.org/whl/rocm6.2
|
||||||
else
|
else
|
||||||
@ -56,7 +55,6 @@ else
|
|||||||
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 cpuonly -c pytorch
|
conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 cpuonly -c pytorch
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
||||||
echo "Installing Python dependencies from requirements.txt..."
|
echo "Installing Python dependencies from requirements.txt..."
|
||||||
|
|
||||||
# 刷新环境
|
# 刷新环境
|
||||||
@ -82,7 +80,7 @@ rm "$TAR_FILE"
|
|||||||
|
|
||||||
CMAKE_FILE="$DIR_NAME/lib/open_jtalk/src/CMakeLists.txt"
|
CMAKE_FILE="$DIR_NAME/lib/open_jtalk/src/CMakeLists.txt"
|
||||||
|
|
||||||
if [[ "$OSTYPE" == "darwin"* ]]; then
|
if [[ "$OS_TYPE" == "darwin"* ]]; then
|
||||||
sed -i '' -E 's/cmake_minimum_required\(VERSION[^\)]*\)/cmake_minimum_required(VERSION 2.8.12...3.31)/' "$CMAKE_FILE"
|
sed -i '' -E 's/cmake_minimum_required\(VERSION[^\)]*\)/cmake_minimum_required(VERSION 2.8.12...3.31)/' "$CMAKE_FILE"
|
||||||
else
|
else
|
||||||
sed -i -E 's/cmake_minimum_required\(VERSION[^\)]*\)/cmake_minimum_required(VERSION 2.8.12...3.31)/' "$CMAKE_FILE"
|
sed -i -E 's/cmake_minimum_required\(VERSION[^\)]*\)/cmake_minimum_required(VERSION 2.8.12...3.31)/' "$CMAKE_FILE"
|
||||||
@ -94,15 +92,16 @@ pip install "$TAR_FILE"
|
|||||||
|
|
||||||
rm -rf "$TAR_FILE" "$DIR_NAME"
|
rm -rf "$TAR_FILE" "$DIR_NAME"
|
||||||
|
|
||||||
pip install -r requirements.txt -c constraints.txt
|
pip install -r extra-req.txt --no-deps
|
||||||
|
|
||||||
if [ "$USE_ROCM" = true ] && [ "$IS_WSL" = true ] ; then
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
if [ "$USE_ROCM" = true ] && [ "$IS_WSL" = true ]; then
|
||||||
echo "Update to WSL compatible runtime lib..."
|
echo "Update to WSL compatible runtime lib..."
|
||||||
location=`pip show torch | grep Location | awk -F ": " '{print $2}'`
|
location=$(pip show torch | grep Location | awk -F ": " '{print $2}')
|
||||||
cd ${location}/torch/lib/
|
cd ${location}/torch/lib/
|
||||||
rm libhsa-runtime64.so*
|
rm libhsa-runtime64.so*
|
||||||
cp /opt/rocm/lib/libhsa-runtime64.so.1.2 libhsa-runtime64.so
|
cp /opt/rocm/lib/libhsa-runtime64.so.1.2 libhsa-runtime64.so
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "Installation completed successfully!"
|
echo "Installation completed successfully!"
|
||||||
|
|
||||||
|
@ -6,6 +6,7 @@ numba==0.56.4
|
|||||||
pytorch-lightning>2.0
|
pytorch-lightning>2.0
|
||||||
gradio>=4.0,<=4.24.0
|
gradio>=4.0,<=4.24.0
|
||||||
ffmpeg-python
|
ffmpeg-python
|
||||||
|
onnxruntime; sys_platform == 'darwin'
|
||||||
onnxruntime-gpu; sys_platform != 'darwin'
|
onnxruntime-gpu; sys_platform != 'darwin'
|
||||||
tqdm
|
tqdm
|
||||||
funasr==1.0.27
|
funasr==1.0.27
|
||||||
|
Loading…
x
Reference in New Issue
Block a user