From bb8a8efecaa29da775b71815d2808e09f8c4af99 Mon Sep 17 00:00:00 2001 From: Fridemn <150212937+Fridemn@users.noreply.github.com> Date: Tue, 4 Mar 2025 14:10:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=20Linux=20=E4=B8=80?= =?UTF-8?q?=E9=94=AE=E5=AE=89=E8=A3=85=E8=84=9A=E6=9C=AC=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=E5=A4=B1=E8=B4=A5=E9=97=AE=E9=A2=98=20(#2142)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 安装 pyopenjtalk 库时不仅要保证 gcc 版本不高于 14,同时在执行 pip install -r requirements.txt 前需要保证环境变量中更新刚刚安装的 gcc/g++/cmake。 因此在安装三者后补充了设置环境变量,并且用 hash -r 确保生效 --- install.sh | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 2eda0fe..63be260 100644 --- a/install.sh +++ b/install.sh @@ -1,6 +1,21 @@ #!/bin/bash + +# 安装构建工具 +# Install build tools conda install -c conda-forge gcc=14 conda install -c conda-forge gxx conda install ffmpeg cmake + +# 设置编译环境 +# Set up build environment +export CMAKE_MAKE_PROGRAM="$CONDA_PREFIX/bin/cmake" +export CC="$CONDA_PREFIX/bin/gcc" +export CXX="$CONDA_PREFIX/bin/g++" + conda install pytorch==2.1.1 torchvision==0.16.1 torchaudio==2.1.1 pytorch-cuda=11.8 -c pytorch -c nvidia -pip install -r requirements.txt + +# 刷新环境 +# Refresh environment +hash -r + +pip install -r requirements.txt \ No newline at end of file