From 7ea75fcb6647da827a1c09537f384052620f846c Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Sat, 18 Oct 2025 22:58:08 -0400 Subject: [PATCH] Add colab specific instructions --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/README.md b/README.md index 5d6f8f0..4bb9b94 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,22 @@ types. All data is normalized to standard SI units (volts and seconds) for consi pip install git+https://git.kitsunehosting.net/Kenwood/simple-scope-parser.git ``` +## Installation *in colab* + +Much the same, but google has their **own format** for installing packages on the google runners. + +```py +# Put this *in* a code block +try: + from scope_parser import parse_gwinstek_data +except ImportError: + !pip install git+https://git.kitsunehosting.net/Kenwood/simple-scope-parser.git + try: + from scope_parser import parse_gwinstek_data + except ImportError: + raise ImportError("Error installing Joe's lib!") +``` + ### Local Development ```bash