We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7893975 + a060abe commit 95c79f8Copy full SHA for 95c79f8
examples/install_requirements.py
@@ -55,12 +55,12 @@ def hasWhitespace(string):
55
requireOpenCv = True
56
57
if requireOpenCv:
58
- DEPENDENCIES.append('numpy')
+ DEPENDENCIES.append('numpy<2.0')
59
# 4.5.4.58 package is broken for python 3.9
60
if sys.version_info[0] == 3 and sys.version_info[1] == 9:
61
DEPENDENCIES.append('opencv-python!=4.5.4.58')
62
else:
63
- DEPENDENCIES.append('opencv-python')
+ DEPENDENCIES.append('opencv-python<5.0')
64
65
66
0 commit comments