Files
slr_google_landmarks_demo/source_activate_venv.sh
jared 8bcc62b045 Initial commit: MediaPipe landmarks demo
HTML demos for face, hand, gesture, and posture tracking using MediaPipe.
Includes Python CLI tools for processing video files.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-19 22:38:40 -05:00

15 lines
354 B
Bash
Executable File

#!/bin/bash
# AlERT: source this script, don't run it directly.
# source source_activate_venv.sh
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
echo "This script must be sourced, not run directly."
echo "source source_activate_venv.sh"
exit 1
fi
# rest of your script here
echo "Script is being sourced. Continuing..."
source ./.venv/bin/activate