- Learn WebAssembly
- Mike Rourke
- 135字
- 2021-08-13 15:38:56
Homebrew for macOS
Homebrew is an excellent package manager for macOS that allows us to install most of the tools we will use out of the box. Homebrew is as simple as pasting the following command in Terminal and running it:
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
You'll see messages in Terminal that will walk you through the installation process. Once that's complete, you'll need to install an extension for Homebrew called Homebrew-Cask that allows you to install macOS applications without having to download the installer, mount it, and drag the application into the Applications folder. You can install this by running the following command:
brew tap caskroom/cask
That's it! You're now able to install applications by running either of these commands:
# For command line tools:
brew install <Tool Name>
# For desktop applications:
brew cask install <Application Name>
推薦閱讀
- C語(yǔ)言程序設(shè)計(jì)實(shí)訓(xùn)教程
- 人臉識(shí)別原理及算法:動(dòng)態(tài)人臉識(shí)別系統(tǒng)研究
- STM32F0實(shí)戰(zhàn):基于HAL庫(kù)開(kāi)發(fā)
- D3.js 4.x Data Visualization(Third Edition)
- Linux:Embedded Development
- Java高并發(fā)核心編程(卷1):NIO、Netty、Redis、ZooKeeper
- ServiceNow:Building Powerful Workflows
- 持續(xù)輕量級(jí)Java EE開(kāi)發(fā):編寫(xiě)可測(cè)試的代碼
- Visual Studio 2015高級(jí)編程(第6版)
- 網(wǎng)絡(luò)數(shù)據(jù)采集技術(shù):Java網(wǎng)絡(luò)爬蟲(chóng)實(shí)戰(zhàn)
- HTML+CSS+JavaScript網(wǎng)頁(yè)制作:從入門到精通(第4版)
- 黑莓(BlackBerry)開(kāi)發(fā)從入門到精通
- H5+移動(dòng)營(yíng)銷設(shè)計(jì)寶典
- 征服C指針(第2版)
- Head First Kotlin程序設(shè)計(jì)