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
+2-2
Original file line number
Diff line number
Diff line change
@@ -55,7 +55,7 @@ A: No, the packages are special wheel binary packages and they already contain s
55
55
56
56
**Q: Pip does not find package ``opencv-python``?**
57
57
58
-
A: The wheel package format and manylinux builds are pretty new things. Most likely the issue is related to too old pip and can be fixed by running ``pip install --upgrade pip``.
58
+
A: The wheel package format and manylinux builds are pretty new things. Most likely the issue is related to too old pip and can be fixed by running ``pip install --upgrade pip`` and ``pip install wheel``.
59
59
60
60
**Q: I need contrib modules?**
61
61
@@ -73,7 +73,7 @@ A: Make sure you have removed old manual installations of OpenCV Python bindings
73
73
74
74
A: OpenCV video I/O depends heavily on FFmpeg. Manylinux and macOS OpenCV binaries are not compiled against it.
75
75
The purpose of these packages is to provide as easy as possible installation experience for OpenCV Python bindings and they should work directly out-of-the-box.
76
-
Adding FFmpeg as an additional dependency without a "universal" FFmpeg build (e.g. LGPL licensed static build like in the Windows wheels) the goal is considerably harder to achieve. This might change in the future.
76
+
Adding FFmpeg as an additional dependency without a "universal" FFmpeg build (e.g. LGPL licensed build like in the Windows wheels) the goal is considerably harder to achieve. This might change in the future.
77
77
78
78
**Q: Why I can't open GUI windows (``cv2.imshow()``) on GNU/Linux distribution X or on macOS?**
Copy file name to clipboardExpand all lines: README_CONTRIB.rst
+4-4
Original file line number
Diff line number
Diff line change
@@ -54,7 +54,7 @@ A: No, the packages are special wheel binary packages and they already contain s
54
54
55
55
**Q: Pip does not find package opencv-contrib-python?**
56
56
57
-
A: The wheel package format and manylinux builds are pretty new things. Most likely the issue is related to too old pip and can be fixed by running ``pip install --upgrade pip``.
57
+
A: The wheel package format and manylinux builds are pretty new things. Most likely the issue is related to too old pip and can be fixed by running ``pip install --upgrade pip`` and ``pip install wheel``.
58
58
59
59
**Q: Import fails on Windows to some DLL load error?**
60
60
@@ -68,7 +68,7 @@ A: Make sure you have removed old manual installations of OpenCV Python bindings
68
68
69
69
A: OpenCV video I/O depends heavily on FFmpeg. Manylinux and macOS OpenCV binaries provided withing these packages are not compiled against it.
70
70
The purpose of these packages is to provide as easy as possible installation experience for OpenCV Python bindings and they should work directly out-of-the-box.
71
-
Adding FFmpeg as an additional dependency without a "universal" FFmpeg build (e.g. LGPL licensed static build like in the Windows wheels) the goal is considerably harder to achieve. This might change in the future.
71
+
Adding FFmpeg as an additional dependency without a "universal" FFmpeg build (e.g. LGPL licensed build like in the Windows wheels) the goal is considerably harder to achieve. This might change in the future.
72
72
73
73
**Q: Why I can't open GUI windows (``cv2.imshow()``) on GNU/Linux distribution X or on macOS?**
74
74
@@ -119,9 +119,9 @@ Currently the ``find_version.py`` file parses OpenCV version information
119
119
from the OpenCV sources. OpenCV depends on numpy, so ``setup.py`` checks
120
120
the minimum required numpy version also with the help of pip.
121
121
122
-
The ``cv2.pyd`` file is normally copied to site-packages.
122
+
The ``cv2.pyd/so`` file is normally copied to site-packages.
123
123
To avoid polluting the root folder the ``__init__.py`` file in cv2 folder
124
-
handles the import logic correctly by importing the actual ``.pyd`` module
124
+
handles the import logic correctly by importing the actual ``.pyd./.so`` module
125
125
and replacing the imported cv2 package in ``sys.modudes`` with the
0 commit comments