Skip to main content
HomeTutorialsData Science

How to Install and Use Homebrew

Discover Homebrew for data science: learn how you can use this package manager to install, update, and remove technologies such as Apache Spark and Graphviz.
Updated May 2018  · 8 min read

The creators of Homebrew say that it is the “missing package manager for macOS”. Packages are collections of files that are bundled together that can be installed and removed as a group. A package manager is a tool which automates the process of installing, updating, and removing packages.

If you are a Python user, you may have used the package manager pip or the package manager functionality of conda to install, update, or remove packages.

If you are an R user, you may have used the RStudio Package Manager to install, update, or remove packages.

Homebrew is a package manager designed for Mac that is useful to install. You will find that you can utilize Homebrew for data science as it makes it a lot easier to install additional technologies on Mac such as Apache Spark and the software Graphviz.

With that, let’s get started.

Install Command Line Tools

In order to install Homebrew, you need to install either the Xcode Command Line Tools (about 100 MB) or the full Xcode package (about 10 GB). In this tutorial, you will install Command Line Tools as they are a more reasonable size. Command Line Tools gives Mac users many commonly used tools, utilities, and compilers. One advantage of this is that when you install Command Line Tools, it installs Git which you need as Homebrew is essentially all Git and Ruby scripts underneath.

1. Open a new terminal. You can do this by clicking on the Spotlight magnifying glass at the top right of the screen, type terminal and then click on the Terminal icon. You can check if Command Line Tools or Xcode is installed by typing the command below in your terminal.

xcode-select -p

new terminal

If you see a path output like in the image above, please skip to the "Install Homebrew" section of the tutorial. You already have Xcode or Xcode Command Line Tools installed.

If you see no output, proceed to step 3.

2. Type the following into your terminal to install Command Line Tools. If you see a prompt like the one in the image below, click on Install.

xcode-select --install

installation prompt

If a License Agreement appears, please read it and then click Agree.

3. Check again to see if Xcode Command Line Tools is installed. You can do this by opening a new terminal and typing in the command below.

xcode-select -p

command example

Install Homebrew

Open a terminal and type the command below. You’ll be prompted to give your password, which is usually the one that you also use to unlock your Mac when you start it up. After you enter your password, the installation will start.

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

command

Homebrew Commands

Install Package

The command below installs the package wget. You can substitute wget for the package you want to install.

brew install wget

Uninstall Package

The command below uninstalls the package wget. You can substitute wget for the package you want to uninstall.

brew rm wget

List Packages you can Install

brew search lists all the possible packages that you can install. The image below shows the output of using brew search.

brew search output

A more practical usage of the brew search command is to use a more refined query. For example, if you are are interested in installing Apache Spark, you can use the command below to see if there is a Apache Spark package to install.

brew search spark

brew search spark

From the image above, there is a potential Apache Spark package called apache-spark that might be useful to install. It might be be helpful to get more information on apache-spark which is where the command brew info comes in handy.

Get Information on a Package

The command brew info is really useful to get more information on a package and to see the requirements of a package.

The command below gets more information on the package apache-spark.

brew info apache-spark

apache-spark package info

Notice that it lists that this package requires java version 1.8 and gives couple links to places where you can get more information on the specific package. The next section goes into more detail on how to install Apache Spark.

Integration with Other Technologies

You will often find that Homebrew can be used to assist you in working with other technologies. This section includes two examples on how to use Homebrew for data science:

  • How to install Apache Spark using Homebrew
  • How to utilize Homebrew to help visualize decision trees.

Install Apache Spark using Homebrew

Homebrew can be used to install other technologies like Apache Spark. Apache Spark is not the easiest to install, but Homebrew makes it easier. The steps below go over how to install Apache Spark using Homebrew.

1. Look to see if there is a Apache Spark package on Homebrew using the command below.

brew search spark

command 1

2. Look for more information about the apache-spark to see if you have all the necessary dependencies.

brew info apache-spark

If the output of your command shows that you have Java, continue to step 3.

command 2

If the output of your command shows that you don’t meet the requirements, you will need to install Java before you proceed to step 3.

command 3

You can type the command below to see if you have Java. The image below shows the output if you don’t have Java installed. It is important to note that if you have an older version of Java, you will need to upgrade.

java -version

java installation

You can install Java using Cask. Cask is an extension to brew that allows management of graphical applications through the Cask project.

brew tap caskroom/versions
brew cask install java8

After installing Java, check that you have an appropriate version of Java.

java -version

command 4

3. Use the command below to install apache-spark.

brew install apache-spark

command 5

4. You can now open PySpark with the command below.

pyspark

command 6

5. You can close pyspark with exit().

If you want to learn about PySpark, please see the Apache Spark Tutorial: ML with PySpark.

Homebrew to Help Visualize Decision Trees

Graphviz is open source graph visualization software. Graph visualization is a way of representing structural information as diagrams of abstract graphs and networks. In data science, one use of Graphviz is to visualize decision trees (you can learn about decision trees here).

You can install GraphViz by using the command below.

brew install graphviz

The python code below fits a decision tree on the famous Iris Dataset and exports a dot file (decisionTree.dot) of the decision tree you fit.

 from sklearn.datasets import load_iris
from sklearn import tree
iris = load_iris()
clf = tree.DecisionTreeClassifier(max_depth=3)
clf = clf.fit(iris.data, iris.target)
tree.export_graphviz(clf,
                     out_file="decisionTree.dot",
                     feature_names=iris.feature_names,
                     class_names=iris.target_names,
                     filled = True)

One of the strengths of decision trees is that they are easily interpretable. You can more easily interpret a decision tree by viewing it. This is where Graphviz comes in. In a terminal, you can type the command below to convert decisionTree.dot to an easy to view .png file.

dot -Tpng decisionTree.dot -o decisionTree.png

You can then open the .png file you created you view your decision tree.

decision tree

It is imporantant to note that sometimes package manager functionalities overlap. For example, it is also possible to install Graphviz through the package manager functionality of conda if you have Anaconda installed by using the command below.

conda install python-graphviz

Conclusion

This tutorial provides a quick guide on how to install and use Homebrew for data science. I hope you find this tutorial useful when you want to install Apache Spark or Graphviz. Homebrew has a wonderful website that you can look at for further commands. If you any questions or thoughts on the tutorial, feel free to reach out in the comments below or through Twitter.

Topics

Learn more about Data Science

Course

Understanding Data Science

2 hr
566.8K
An introduction to data science with no coding involved.
See DetailsRight Arrow
Start Course
See MoreRight Arrow
Related

A Data Science Roadmap for 2024

Do you want to start or grow in the field of data science? This data science roadmap helps you understand and get started in the data science landscape.
Mark Graus's photo

Mark Graus

10 min

Python NaN: 4 Ways to Check for Missing Values in Python

Explore 4 ways to detect NaN values in Python, using NumPy and Pandas. Learn key differences between NaN and None to clean and analyze data efficiently.
Adel Nehme's photo

Adel Nehme

5 min

Seaborn Heatmaps: A Guide to Data Visualization

Learn how to create eye-catching Seaborn heatmaps
Joleen Bothma's photo

Joleen Bothma

9 min

Test-Driven Development in Python: A Beginner's Guide

Dive into test-driven development (TDD) with our comprehensive Python tutorial. Learn how to write robust tests before coding with practical examples.
Amina Edmunds's photo

Amina Edmunds

7 min

Exponents in Python: A Comprehensive Guide for Beginners

Master exponents in Python using various methods, from built-in functions to powerful libraries like NumPy, and leverage them in real-world scenarios to gain a deeper understanding.
Satyam Tripathi's photo

Satyam Tripathi

9 min

Python Linked Lists: Tutorial With Examples

Learn everything you need to know about linked lists: when to use them, their types, and implementation in Python.
Natassha Selvaraj's photo

Natassha Selvaraj

9 min

See MoreSee More