-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.sh
More file actions
55 lines (48 loc) · 1.9 KB
/
setup.sh
File metadata and controls
55 lines (48 loc) · 1.9 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
55
# Algorzen Pulse - Quick Setup Script
# Author: Rishi Singh | Algorzen Research Division © 2025
echo "╔══════════════════════════════════════════════════════════════╗"
echo "║ ║"
echo "║ ALGORZEN PULSE ║"
echo "║ Quick Setup & Installation ║"
echo "║ ║"
echo "║ Algorzen Research Division © 2025 — Author: Rishi Singh ║"
echo "║ ║"
echo "╚══════════════════════════════════════════════════════════════╝"
echo ""
# Check Python version
echo "🔍 Checking Python installation..."
python3 --version
# Create virtual environment
echo ""
echo "📦 Creating virtual environment..."
python3 -m venv venv
# Activate virtual environment
echo ""
echo "🔌 Activating virtual environment..."
source venv/bin/activate
# Upgrade pip
echo ""
echo "⬆️ Upgrading pip..."
pip install --upgrade pip
# Install dependencies
echo ""
echo "📥 Installing dependencies..."
pip install -r requirements.txt
echo ""
echo "✅ Setup complete!"
echo ""
echo "📋 Next steps:"
echo " 1. Activate the virtual environment:"
echo " source venv/bin/activate"
echo ""
echo " 2. Generate sample data:"
echo " python main.py --generate-sample"
echo ""
echo " 3. Run analysis:"
echo " python main.py --input data/sample_live_feed.csv"
echo ""
echo " 4. Launch dashboard (optional):"
echo " streamlit run app/streamlit_app.py"
echo ""
echo "🎯 For more information, see README.md"
echo ""