-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.bat
More file actions
25 lines (21 loc) · 827 Bytes
/
setup.bat
File metadata and controls
25 lines (21 loc) · 827 Bytes
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
@echo off
echo ===============================================
echo ALICE Bot - CRITICAL FIX Setup
echo Author: onex_dv
echo ===============================================
echo [1/3] Installing ONLY required dependencies...
pip install requests>=2.28.0
pip install colorama>=0.4.4
echo [2/3] Verifying installation...
python -c "import requests, json, time; print('Core dependencies OK')"
echo [3/3] Testing colorama (optional)...
python -c "try: import colorama; print('Colorama OK')" "except: print('Colorama missing - colors disabled')"
echo.
echo ===============================================
echo ALICE Bot Ready! Fixed all dependency issues.
echo ===============================================
echo.
echo Test command:
echo python base.py sc 0xc51beb5b222aed7f0b56042f04895ee41886b763 p Vv wallet.txt
echo.
pause