Skip to content
This repository was archived by the owner on Jul 12, 2025. It is now read-only.

Commit 11f7125

Browse files
authored
fix: 🐛 Could not install packages
1 parent 1f24b35 commit 11f7125

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ exit /b 0
6666
echo Installing dependencies...
6767
call "%MINICONDA_DIR%\condabin\conda.bat" activate "%ENV_DIR%" || goto :error
6868
pip install --upgrade setuptools || goto :error
69-
pip install -r "%INSTALL_DIR%\requirements.txt" || goto :error
69+
pip install --no-cache-dir -r "%INSTALL_DIR%\requirements.txt" || goto :error
7070
pip install torch==2.3.1 torchvision==0.18.1 torchaudio==2.3.1 --upgrade --index-url https://download.pytorch.org/whl/cu121 || goto :error
7171
call "%MINICONDA_DIR%\condabin\conda.bat" deactivate
7272
echo Dependencies installation complete.

0 commit comments

Comments
 (0)