From d4a0503403e68e53f375d5b919d25a58069ed412 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Sat, 18 Oct 2025 22:59:09 -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..459b69f 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 ``` +## Instalation *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