| Python 3.13.9 (tags/v3.13.9:8183fa5, Oct 14 2025, 14:09:13) [MSC v.1944 64 bit (AMD64)] on win32
|
| Enter "help" below or click "Help" above for more information.
|
| >>>
|
| ...
|
| ...
|
| ...
|
| ... echo "Installing HOLAS AI Defender v1.0..."
|
| ...
|
| ...
|
| ... mkdir -p logs config docs examples
|
| ...
|
| ...
|
| ... if command -v pip3 &> /dev/null; then
|
| ... pip3 install -r requirements.txt
|
| ... else
|
| ... echo "Error: pip3 not found. Please install Python 3 and pip."
|
| ... exit 1
|
| ... fi
|
| ...
|
| ...
|
| ... chmod +x main.py
|
| ... chmod +x install.sh
|
| ...
|
| ...
|
| ... mkdir -p logs
|
| ...
|
| ...
|
| ... if [ ! -f config/system.json ]; then
|
| ... cp config/system.json.example config/system.json 2>/dev/null || echo "Configuration file not found"
|
| ... fi
|
| ...
|
| ... echo "Installation complete!"
|
| ... echo "Run the system with: python3 main.py"
|
|
|