-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Description
Description of issue (what needs changing)
The installation docs for MediaPipe still recommend: "brew install opencv@3" This formula has been removed from Homebrew. Only brew install opencv (which installs OpenCV 4.x) is available. As a result, the documented command fails for macOS users. The docs should either: •Update to brew install opencv (if OpenCV 4 is supported), or •Direct macOS users to use MacPorts (Option 2 already in the docs), or •Recommend Bazel/pip installation paths instead of relying on Homebrew.
Clear description
- Current docs suggest installing OpenCV 3 with Homebrew. 2. Homebrew removed the opencv@3 formula, so the command no longer works. 3. This blocks new users from following the official installation guide on macOS.
Correct links
https://formulae.brew.sh/formula/opencv
Parameters defined
No response
Returns defined
No response
Raises listed and defined
No response
Usage example
What currently fails: brew install opencv@3 # Error: No available formula with the name "opencv@3" What currently works: brew install opencv # Installs OpenCV 4.x
Request visuals, if applicable
No response
Submit a pull request?
I can open a PR after confirmation from maintainers whether: OpenCV 4 via brew install opencv is officially supported, or macOS users should switch to MacPorts / Bazel / pip paths.