DEV Community

Ngobrolin IT
Ngobrolin IT

Posted on

2 1

Tutorial Install Homebrew di Mac OS

Haloo dev 👋

Pada tutorial kali ini aku mau share tutorial cara install homebrew di Mac OS. Nah buat temen-temen yang belum tau apa itu homebrew, jadi homebrew merupakan pengelola paket aplikasi pihak ketiga di Mac OS. Seperti di ubuntu ada apt untuk pengelolaan paket aplikasi.

Kalau kita install aplikasi di Mac OS kan harus melalui App Store, nah ada beberapa paket aplikasi yang bisa diinstall melalui homebrew. Misal jika kamu seorang web developer, kamu bisa menginstall MySQL, PHP, Node JS, Composer, dan lain-lain melalui homebrew.

Install Homebrew

Nah cara menginstallnya mudah, tinggal buka terminal kemudian jalankan script berikut ini:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
Enter fullscreen mode Exit fullscreen mode

Scriptnya didapat dari official websitenya homebrew di brew.sh

Install Aplikasi

Untuk menginstall sebuah aplikasi, cukup menggunakan perintah:

brew install
Enter fullscreen mode Exit fullscreen mode

Keuntungan menggunakan homebrew kamu bisa lebih cepat dalam menginstall aplikasi. Bahkan sekali command line untuk menginstall paket aplikasi beserta dependency nya.

brew install phpbrew install php@8.0brew install mysql@5.7brew install node
Enter fullscreen mode Exit fullscreen mode

Install GUI Apps

Selain aplikasi berbasis CLI, kamu juga menginstall aplikasi GUI juga. Install Cask terlebih dahulu. Cask digunakan untuk menginstall aplikasi-aplikasi GUI melalui homebrew.

brew install cask
Enter fullscreen mode Exit fullscreen mode

Setelah Cask berhasil terinstall kamu gunakan untuk menginstall aplikasi GUI. Misal kamu mau menginstall Google Chrome, cukup gunakan perintah:

brew cask install google-chrome
Enter fullscreen mode Exit fullscreen mode

Nah mudah banget kan. Jadi menurutku homebrew aplikasi wajib yang digunakan oleh developer terutama pengguna Mac OS.

Uninstall Homebrew

Cara menghapus Homebrew sangat mudah. Di official github homebrew dijelaskan cara uninstall homebrew. Gunakan perintah ini terminal:

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/uninstall.sh)"
Enter fullscreen mode Exit fullscreen mode

Pada dasarnya script diatas adalah menjalankan file uninstall.sh.

Selamat mencoba temen-temen developer.

Sentry blog image

Identify what makes your TTFB high so you can fix it

In the past few years in the web dev world, we’ve seen a significant push towards rendering our websites on the server. Doing so is better for SEO and performs better on low-powered devices, but one thing we had to sacrifice is TTFB.

Read more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Discover a treasure trove of wisdom within this insightful piece, highly respected in the nurturing DEV Community enviroment. Developers, whether novice or expert, are encouraged to participate and add to our shared knowledge basin.

A simple "thank you" can illuminate someone's day. Express your appreciation in the comments section!

On DEV, sharing ideas smoothens our journey and strengthens our community ties. Learn something useful? Offering a quick thanks to the author is deeply appreciated.

Okay