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
conda remove mkl mkl-service # may fail, don't worry
119
123
```
124
+
125
+
Error on Mac M1: `AttributeError: partially initialized module 'cv2' has no attribute 'gapi_wip_gst_GStreamerPipeline' (most likely due to a circular import)`
126
+
Solution: downgrade your cv2 version to 4.5.5.64 using the command `python.XX -m pip install -U opencv-python==4.5.5.64` where XX is your python version.
127
+
128
+
Error on Mac M1: library not loaded when trying to import cv2 `ImportError: dlopen(/Users/mikasnoopy/homebrew/lib/python3.9/site-packages/cv2/python-3.9/cv2.cpython-39-darwin.so, 2): Library not loaded: /Users/mikasnoopy/homebrew/opt/dav1d/lib/libdav1d.5.dylib
Copy file name to clipboardExpand all lines: RUN.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -456,8 +456,10 @@ Currently we extract frame 1 per sec, please reach out if you need other support
456
456
## Debugging fastdup <aname="debug"/>
457
457
458
458
To debug program execution the following is recommended
459
-
- Make sure you have upgraded fastdup to the latest version, we release versions a couple of times a week.
459
+
- Make sure you have upgraded fastdup to the latest version, we release versions a couple of times a week.
460
+
- In case of installation failure try to upgrade your pip version to the latest using `python3.XX -m pip install -U pip` where XX is your python version.
460
461
- It is recommneded to debug in a python shell (and not in a Jupyter notebook)
461
462
- Run with `verbose=1` to get additional traces
462
463
- Run with `num_images=10` to run on a small subset of your data before running on the full dataset.
464
+
- In a python shell run `import fastdup; help(fastdup)` to see function documentation.
463
465
- If the issue persist please join our [Slack Channel]("https://join.slack.com/t/visualdatabase/shared_invite/zt-19jaydbjn-lNDEDkgvSI1QwbTXSY6dlA")
0 commit comments