You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.rst
+17-11Lines changed: 17 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -11,25 +11,31 @@ OpenCV on wheels
11
11
12
12
**Unofficial** OpenCV packages for Python.
13
13
14
+
This repository generates packages which contain pre-compiled OpenCV binary with Python bindings. This enables super fast (usually < 10 seconds) OpenCV installation for Python.
15
+
16
+
If you need only OpenCV Python bindings, no separate OpenCV installation is required.
17
+
18
+
**IMPORTANT NOTE**
19
+
20
+
MacOS and Linux wheels have some limitations:
21
+
22
+
- video related functionality is not supported (not compiled with FFmpeg)
23
+
- for example ``cv.imshow()`` will not work (not compiled with GTK+ 2.x or Carbon support)
24
+
14
25
Installation and Usage
15
26
----------------------
16
27
17
-
To install this package:
28
+
1. If you have previous/other version of OpenCV installed (e.g. cv2 module in the root of Python's site-packages), remove it before installation to avoid conflicts.
29
+
- To further avoid conflicts and to make development easier, Python's `virtual environments <https://docs.python.org/3/library/venv.html>`__ are highly recommended for development purposes.
0 commit comments