-
Notifications
You must be signed in to change notification settings - Fork 1
/
spy-py.bat
38 lines (32 loc) · 1.01 KB
/
spy-py.bat
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
@echo off
title spy-py
python --version >nul 2>&1
if errorlevel 1 (
python3 --version >nul 2>&1
if errorlevel 1 (
echo Python is not installed. Please install Python 3.6 or higher.
pause
exit /b
)
)
pip install requests >nul 2>&1
echo Initializing virtual environment...
python -m venv Spy-Py
call Spy-Py/Scripts/activate
echo Installing required packages...
pip install -r requirements.txt
cls
python builder.py
echo.
echo ########################################################
echo # #
echo # Spy-Py build complete. If you find this project #
echo # useful, please consider starring it on GitHub! #
echo # Remember to use the software responsibly, and #
echo # note that I am not liable for any actions you #
echo # choose to take with it. Thanks for using Spy-py! #
echo # #
echo ########################################################
echo.
pause
exit