Spaces:
Running
Running
File size: 794 Bytes
027d724 |
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 |
@echo off
:: Check if Python 3.11 is installed
python -V 2>&1 | findstr /I "Python 3.11" >nul
if errorlevel 1 (
echo Python 3.11 is not installed. Please install it first.
exit /b 1
)
:: Create virtual environment named .venv using Python 3.11
python -m venv .venv
:: Activate the virtual environment
call .venv\Scripts\activate.bat
:: Install packages from requirements.txt
if exist requirements.txt (
pip install -r requirements.txt
) else (
echo requirements.txt not found. Installing packages directly.
pip install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cu121
pip install pillow diffusers trimesh gradio pythreejs plotly
)
:: Deactivate the virtual environment
deactivate
echo Environment setup completed successfully!
|