mirror of
https://github.com/harvard-edge/cs249r_book.git
synced 2025-12-05 19:17:28 -06:00
Applied systematic three-step filtering to implement improvements across multiple Foundation chapters based on comprehensive feedback from 8 diverse student agents. Key improvements by chapter: - Introduction: Enhanced flow, fixed math notation, added terminology footnotes - ML Systems: Removed redundant sections, added bridging content - DL Primer: Added math prerequisites, enhanced definitions, added examples - DNN Architectures: Fixed critical citation, added selection framework, enhanced complexity analysis Three-step filter prevented scope creep while ensuring transformative improvements.
52 lines
1.6 KiB
Python
Executable File
52 lines
1.6 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
Setup script to install binder CLI in virtual environment
|
|
This allows using 'binder' command without './' when venv is active
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
import subprocess
|
|
from pathlib import Path
|
|
|
|
def main():
|
|
"""Install binder CLI in development mode"""
|
|
project_root = Path(__file__).parent
|
|
|
|
print("🔧 Setting up binder CLI in virtual environment...")
|
|
|
|
# Check if we're in a virtual environment
|
|
if not hasattr(sys, 'real_prefix') and not (hasattr(sys, 'base_prefix') and sys.base_prefix != sys.prefix):
|
|
print("⚠️ Warning: Not in a virtual environment")
|
|
print(" Consider activating your venv first: source .venv/bin/activate")
|
|
response = input(" Continue anyway? (y/N): ")
|
|
if response.lower() != 'y':
|
|
print("❌ Setup cancelled")
|
|
return 1
|
|
|
|
try:
|
|
# Install in development mode
|
|
subprocess.run([
|
|
sys.executable, "-m", "pip", "install", "-e", "."
|
|
], cwd=project_root, check=True)
|
|
|
|
print("✅ Binder CLI installed successfully!")
|
|
print()
|
|
print("📋 You can now use:")
|
|
print(" binder help # Global command (when venv active)")
|
|
print(" ./binder help # Local script (always works)")
|
|
print()
|
|
print("🎯 Both commands do the same thing - use whichever you prefer!")
|
|
|
|
return 0
|
|
|
|
except subprocess.CalledProcessError as e:
|
|
print(f"❌ Installation failed: {e}")
|
|
return 1
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|
|
|
|
|
|
|