Add colab specific instructions
This commit is contained in:
parent
56a0b8d971
commit
7ea75fcb66
16
README.md
16
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
|
||||
|
|
|
|||
Loading…
Reference in New Issue