34
loading...
This website collects cookies to deliver better user experience
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install.sh)"
# Install wget
brew install wget
brew cask
:# Install Google Chrome
brew cask install google-chrome
ensurepip
:python -m ensurepip
# Install Pylint
pip install pylint
.bash_profile
and ZSH users should update the .zshrc
config with the following alias:update='brew update; brew upgrade; brew cu -ay; brew cleanup; pip install --upgrade `pip list --outdated | awk 'NR>2 {print $1}'`'
brew update
- Fetches the newest version of Homebrew and all formulae from GitHub using git.brew upgrade
- Upgrades the outdated packages that were installed using the package manager.brew cu -ay
- Upgrades all casks (macOS applications) to the latest version without user interaction.brew cleanup
- Cleans up (removes) outdated downloads of the previous versions of the packages that you installed.pip install --upgrade
pip list --outdated | awk 'NR>2 {print $1}'
- Outputs the installed Pip packages that are currently outdated and upgrades them using pip install --upgrade
.pip install --upgrade pip setuptools wheel
update