you are viewing a single comment's thread
view the rest of the comments
[–] 52 points 3 years ago (4 children)

Try installing something from homebrew.

Oh you just want to install this one package here? Ok but let’s update 60 other packages first. Don’t worry, it will only take about one minute. Per package.

  • source
  • hideshow 8 child comments
  • [–] 4 points 3 years ago

    When I was new to linux and got a raspberry pi 1. I was following some random guide to put retroarch on the pi. I did not know what I was doing, but it took at least 24 hours if not more.

    Years later I realized that the guide had me compiling it from source instead of just installing a precompiled package.

  • source
  • parent
  • [–] 1 point 3 years ago

    Real talk I’ve been using this I’ve mashed together:

    update_brew() {
        bold=$(tput bold);
        normal=$(tput sgr0);
        brew --version &&
        echo "${bold} > brew update${normal}" &&
        brew update &&
        echo "${bold} > brew upgrade${normal}" &&
        brew upgrade &&
        echo "${bold} > brew autoremove${normal}" &&
        brew autoremove &&
        echo "${bold} > brew cleanup${normal}" &&
        brew cleanup &&
        echo "${bold} > brew doctor${normal}" &&
        brew doctor;
    }
    
  • source
  • parent