Tibor@pawb.social to Programmer Humor@lemmy.mlEnglish · 1 year agoWhen you have to update the serverpawb.socialimagemessage-square58fedilinkarrow-up1426arrow-down111
arrow-up1415arrow-down1imageWhen you have to update the serverpawb.socialTibor@pawb.social to Programmer Humor@lemmy.mlEnglish · 1 year agomessage-square58fedilink
minus-squaregkd@lemmy.mllinkfedilinkEnglisharrow-up50·1 year agoTry 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.
minus-square0x497a@discuss.tchncs.delinkfedilinkEnglisharrow-up15·1 year agoBruh have fun on x86_64 since you have to compile them all (at least I had to, I might have broken something)
minus-squarenavi@lemmy.tespia.orglinkfedilinkEnglisharrow-up2arrow-down1·1 year agoI installed Mono on my M1 MBP last year and it took like four hours to compile 💀
minus-squareurda@lebowski.sociallinkfedilinkEnglisharrow-up1·1 year agoReal 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; }
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.
Bruh have fun on x86_64 since you have to compile them all (at least I had to, I might have broken something)
I installed Mono on my M1 MBP last year and it took like four hours to compile 💀
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; }