Add colab specific instructions

This commit is contained in:
KenwoodFox 2025-10-18 22:59:09 -04:00
parent 56a0b8d971
commit d4a0503403
1 changed files with 16 additions and 0 deletions

View File

@ -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