From 35f908e147fcac121bdafaf7ca4b751d8091f480 Mon Sep 17 00:00:00 2001 From: biscober <50845461+biscober@users.noreply.github.com> Date: Tue, 11 Apr 2023 02:37:48 +0000 Subject: [PATCH] Update install_requirements.bat (#7) * Update install_requirements.bat move command to dismount temp B drive to after pip install command which requires B drive to still be mounted * Update install_requirements.bat cmd /k not necessary * Update install_requirements.bat add quotes (probably not required but w/e) --- install_requirements.bat | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install_requirements.bat b/install_requirements.bat index 05264259..3b735ddf 100644 --- a/install_requirements.bat +++ b/install_requirements.bat @@ -48,9 +48,9 @@ umamba.exe create -r B:\python\ -n base umamba.exe install --no-shortcuts -r B:\python\ -n base -f "%~dp0\environments\huggingface.yml" -y --always-copy umamba.exe -r B:\ clean -a -y rd B:\Python\pkgs /S /Q -subst B: /d call B:\python\condabin\activate -cmd /k "pip install https://github.com/0cc4m/GPTQ-for-LLaMa/releases/download/2023-04-10/quant_cuda-0.0.0-cp38-cp38-win_amd64.whl" +pip install "https://github.com/0cc4m/GPTQ-for-LLaMa/releases/download/2023-04-10/quant_cuda-0.0.0-cp38-cp38-win_amd64.whl" +subst B: /d pause exit @@ -63,6 +63,6 @@ umamba.exe install --no-shortcuts -r miniconda3 -n base -f environments\huggingf umamba.exe clean -a -y rd miniconda3\Python\pkgs /S /Q call miniconda3\condabin\activate -cmd /k "pip install https://github.com/0cc4m/GPTQ-for-LLaMa/releases/download/2023-04-10/quant_cuda-0.0.0-cp38-cp38-win_amd64.whl" +pip install "https://github.com/0cc4m/GPTQ-for-LLaMa/releases/download/2023-04-10/quant_cuda-0.0.0-cp38-cp38-win_amd64.whl" pause exit