Skip to content

Instantly share code, notes, and snippets.

@vinesmsuic
Created January 30, 2020 05:46
Show Gist options
  • Save vinesmsuic/57799c3bd9b1e9229d7d7bc741be85cd to your computer and use it in GitHub Desktop.
Save vinesmsuic/57799c3bd9b1e9229d7d7bc741be85cd to your computer and use it in GitHub Desktop.
Solving: brew install opencv takes forever
# 1. Homebrew Permissions Denied Issues Solution (https://gist.github.com/irazasyed/7732946)
$sudo chown -R $(whoami) $(brew --prefix)/*
# 2. Upgrade brew
$brew upgrade
# 3. https://stackoverflow.com/questions/30998890/installing-opencv-with-brew-never-finishes/31015713
$brew install gcc --force-bottle
# 4. Install OpenCV
$brew install opencv
#It show work now.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment