From 9007b41745a7531be4eabf180991b2541fe7b083 Mon Sep 17 00:00:00 2001 From: XXXXRT666 <157766680+XXXXRT666@users.noreply.github.com> Date: Sat, 29 Mar 2025 09:49:31 +0000 Subject: [PATCH] Update Install.sh --- install.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index a684b33..eb49cf1 100644 --- a/install.sh +++ b/install.sh @@ -3,13 +3,13 @@ # 安装构建工具 # Install build tools echo "Installing GCC..." -conda install -c conda-forge gcc=14 +conda install -c conda-forge gcc=14 -y echo "Installing G++..." -conda install -c conda-forge gxx +conda install -c conda-forge gxx -y echo "Installing ffmpeg and cmake..." -conda install ffmpeg cmake +conda install ffmpeg cmake -y # 设置编译环境 # Set up build environment @@ -99,7 +99,7 @@ pip install -r requirements.txt if [ "$USE_ROCM" = true ] && [ "$IS_WSL" = true ]; then echo "Update to WSL compatible runtime lib..." location=$(pip show torch | grep Location | awk -F ": " '{print $2}') - cd ${location}/torch/lib/ + cd "${location}"/torch/lib/ || exit rm libhsa-runtime64.so* cp /opt/rocm/lib/libhsa-runtime64.so.1.2 libhsa-runtime64.so fi