Skip to content

Latest commit

 

History

History
38 lines (22 loc) · 1.9 KB

File metadata and controls

38 lines (22 loc) · 1.9 KB

Set up ESP Tools (Mac) -- tutorial for Windows

Mac Computer Setup

There are a few steps required in order to work with the ESP32 and MicroPython.

Xcode - Install the latest version of Xcode

Xcode is Apple's software development environment, and while we won't be using it directly, it includes some tools that we will use. It is a very big download, so allow about 20 minutes to install it.

You can download it for free from the Mac App Store After installing Xcode, open the Terminal (in Applications>Utilities) program and run:

xcode-select --install

Homebrew - Install this utility for managing development packages/systems

Install this "package manager" that makes it easy to install other kinds of software on your computer. Homebrew is installed from your computer's Terminal program.

Go to the Homebrew site for installation instructions.

Python3 and Pip3 - Install these essential tools

Install Python3 & pip3:

brew install python3

Install USB to Serial driver for Adafruit Huzzah32

Install Command line tools to work with ESP32

  • Open a terminal window and install esptool and adafruit-ampy using the pip3 (i.e. for Python3) command. See Homebrew for the easiest method for installing Python3 and pip3 (if you get a permissions error when using pip3, try prefixing it with "sudo ")
  • pip3 install esptool
  • pip3 install adafruit-ampy