xempire1 / INSTALL.bat
yasir68's picture
Upload folder using huggingface_hub (#1)
e26cd2e verified
raw
history blame
327 Bytes
@echo off
echo Creating virtual environment...
python -m venv venv
echo Activating virtual environment...
call venv\Scripts\activate
echo Installing dependencies...
pip install -r requirements.txt
echo Copying .env-example to .env...
copy .env-example .env
echo Please edit the .env file to add your API_ID and API_HASH.
pause