| | @echo off |
| |
|
| | echo WARNING. For this auto installer to work you need to have installed Python 3.10.x, Git, CUDA 12.4, cudNN 8.9, FFmpeg and C++ tools |
| | echo Follow this tutorial step by step to install above requirements : https://youtu.be/DrhUHnYfwC0 |
| |
|
| | pip install requests |
| |
|
| | git clone https://bitbucket.org/secourses/rop-unleash |
| |
|
| | cd rop-unleash |
| |
|
| | git pull |
| | |
| | |
| | echo composing venv |
| | py --version >nul 2>&1 |
| | if "%ERRORLEVEL%" == "0" ( |
| | echo Python launcher is available. Generating Python 3.10 VENV |
| | py -3.10 -m venv venv |
| | ) else ( |
| | echo Python launcher is not available, generating VENV with default Python. Make sure that it is 3.10 |
| | python -m venv venv |
| | ) |
| | call .\venv\Scripts\activate.bat |
| |
|
| | python.exe -m pip install --upgrade pip |
| |
|
| | cd .. |
| |
|
| | echo installing requirements |
| | |
| | pip install -r requirements.txt |
| | |
| | |
| | |
| | echo Virtual environment made and installed properly |
| | |
| | |
| | pause |