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
This tripped me up momentarily when installing camelot:
I pasted the text from the terminal box from the docs as-is: pip install "camelot-py[base]" (I'm not a python guy) and got ModuleNotFoundError: No module named 'cv2' when trying to run camelot.
I browsed the issue-tracker and found #202 which pointed me in the right direction: replacing base with cv. Later I checked the repo README which correctly read: pip install camelot-py[cv].
The text was updated successfully, but these errors were encountered:
This tripped me up momentarily when installing camelot:
I pasted the text from the terminal box from the docs as-is:
pip install "camelot-py[base]"
(I'm not a python guy) and gotModuleNotFoundError: No module named 'cv2'
when trying to run camelot.I browsed the issue-tracker and found #202 which pointed me in the right direction: replacing base with cv. Later I checked the repo README which correctly read:
pip install camelot-py[cv]
.The text was updated successfully, but these errors were encountered: