-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrun.bat
More file actions
55 lines (47 loc) · 1.11 KB
/
Copy pathrun.bat
File metadata and controls
55 lines (47 loc) · 1.11 KB
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
45
46
47
48
49
50
51
52
53
54
@echo off
chcp 65001 >nul
echo ================================================
echo Unrestricted Browser - Absolute Freedom
echo ================================================
echo.
echo WARNING: This browser has NO security protections!
echo You are fully responsible for your actions.
echo.
REM Check venv
if not exist ".venv\" (
echo [ERROR] Virtual environment not found!
echo.
echo Run first: install.bat
echo.
pause
exit /b 1
)
echo Activating virtual environment...
call .venv\Scripts\activate.bat
if %errorlevel% neq 0 (
echo [ERROR] Failed to activate virtual environment!
echo.
echo Try reinstalling:
echo 1. Delete .venv folder
echo 2. Run install.bat again
echo.
pause
exit /b 1
)
echo.
echo Starting browser...
echo.
python browser.py
if %errorlevel% neq 0 (
echo.
echo [ERROR] Failed to start!
echo.
echo If you see DLL errors, install:
echo Visual C++ Redistributable:
echo https://aka.ms/vs/17/release/vc_redist.x64.exe
echo.
echo Then run: install.bat again
echo.
pause
)
call .venv\Scripts\deactivate.bat 2>nul