mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-09-10 22:13:46 +08:00
0e51ecbb7e
version: sunnypilot v2026.003.000 (dev)
date: 2026-09-09T15:43:49
master commit: b255314f5a
11 lines
351 B
Bash
Executable File
11 lines
351 B
Bash
Executable File
#!/bin/sh
|
|
python3 -c "
|
|
try:
|
|
from tinygrad.runtime.support.system import APLRemotePCIDevice
|
|
APLRemotePCIDevice.ensure_app()
|
|
except Exception as e:
|
|
print('Your tinygrad is too old. Please clone the latest tinygrad: git clone https://github.com/tinygrad/tinygrad.git && cd tinygrad && python3 -m pip install -e .')
|
|
print(e)
|
|
exit(1)
|
|
"
|