DangPhamPham commited on
Commit
8b9f87c
·
verified ·
1 Parent(s): 21aab47

Force Python 3.12 (3.14 crashes Camoufox driver)

Browse files
Files changed (1) hide show
  1. start.bat +4 -2
start.bat CHANGED
@@ -1,5 +1,7 @@
1
  @echo off
2
- chcp 65001 >nul
3
  cd /d "%~dp0"
4
- python antidetect.py
 
 
5
  pause
 
1
  @echo off
2
+ chcp 65001 >/dev/null
3
  cd /d "%~dp0"
4
+ set PY=python
5
+ py -3.12 --version >/dev/null 2>&1 && set PY=py -3.12
6
+ %PY% antidetect.py
7
  pause