holas-apex-v14 / generated /install.sh
IctAchievers's picture
Upload 19 files
43ecebd verified
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.
>>> #!/bin/bash
...
... # HOLAS AI Defender Installation Script
...
... echo "Installing HOLAS AI Defender v1.0..."
...
... # Create directories
... mkdir -p logs config docs examples
...
... # Install Python dependencies
... 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
...
... # Set permissions
... chmod +x main.py
... chmod +x install.sh
...
... # Create log directory
... mkdir -p logs
...
... # Copy configuration files
... 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"