Skip to content

Commit e2ed466

Browse files
author
SzabolcsGergely
committed
Remove aarch64 from RPI check
1 parent 7d0bd12 commit e2ed466

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/install_requirements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def hasWhitespace(string):
8080
err_str = "There are no prebuilt wheels for M1 processors. Please open the following link for a solution - https://discuss.luxonis.com/d/69-running-depthai-on-apple-m1-based-macs"
8181
raise RuntimeError(err_str)
8282

83-
is_pi = thisPlatform.startswith("arm") or thisPlatform.startswith("aarch")
83+
is_pi = thisPlatform.startswith("arm")
8484
prebuiltWheelsPythonVersion = [7,9]
8585
if requireOpenCv and is_pi and sys.version_info[1] not in prebuiltWheelsPythonVersion:
8686
print("[WARNING] There are no prebuilt wheels for Python 3.{} for OpenCV, building process on this device may be long and unstable".format(sys.version_info[1]))

0 commit comments

Comments
 (0)