Spaces:
Runtime error
Runtime error
File size: 1,190 Bytes
0140c70 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
@echo off
call myenv\Scripts\activate
set HF_HOME=huggingface
REM ͨ���ٶȼ����������ʹ�þ���
set "target_url=www.google.com"
set "timeout=4000"
ping %target_url% -n 1 -w %timeout% >nul
if %ERRORLEVEL% neq 0 (
echo Use CN
echo ��װ����
set PIP_DISABLE_PIP_VERSION_CHECK=1
set PIP_NO_CACHE_DIR=1
set PIP_INDEX_URL=https://pypi.tuna.tsinghua.edu.cn/simple
echo ��װ torch...
pip install torch==2.2.1+cu121 torchvision==0.17.1+cu121 -f https://mirror.sjtu.edu.cn/pytorch-wheels/torch_stable.html -i https://pypi.tuna.tsinghua.edu.cn/simple
) else (
echo Use default
echo Installing deps...
pip install torch==2.2.1+cu121 torchvision==0.17.1+cu121 -i https://download.pytorch.org/whl/cu121
)
if %ERRORLEVEL% neq 0 (
echo torch install failed / torch ��װʧ�� > install_temp.txt
pause >nul
exit /b 1
)
pip install ./install_script/deepspeed-0.11.2+8ce7471-py3-none-any.whl
pip install -U -I --no-deps xformers==0.0.25
pip install -r ./install_script/require.txt
if %ERRORLEVEL% neq 0 (
echo Deps install failed / ������װʧ�� > install_temp.txt
pause >nul
exit /b 1
)
echo Install completed / ��װ��� > install_temp.txt
|