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.
1 parent a8dfcf2 commit c048e37Copy full SHA for c048e37
setup.py
@@ -155,9 +155,14 @@ def main():
155
]
156
157
if sys.platform.startswith("linux") and not build_headless:
158
- rearrange_cmake_output_data["cv2.qt.plugins.platforms"] = [
159
- (r"lib/qt/plugins/platforms/libqxcb\.so")
160
- ]
+ if x64:
+ rearrange_cmake_output_data["cv2.qt.plugins.platforms"] = [
+ (r"/usr/lib64/qt5/plugins/platforms/libqxcb\.so")
161
+ ]
162
+ else:
163
164
+ (r"/usr/lib/qt5/plugins/platforms/libqxcb\.so")
165
166
167
if build_headless:
168
# it seems that cocoa cannot be disabled so on macOS the package is not truly headless
0 commit comments