-
-
Notifications
You must be signed in to change notification settings - Fork 4
3. Setting Up the Development Environment
Achim Pieters edited this page Oct 17, 2024
·
1 revision
- Download Docker Desktop: Visit the Docker website and download Docker Desktop for Mac.
- Install Docker: Follow the on-screen installation instructions.
- Create a Docker Account: Register on Docker Hub if you haven't already.
- Launch Docker and Sign In: Open Docker Desktop and sign in with your Docker Hub credentials.
- Open Terminal: Navigate to
Applications > Utilities
and open Terminal. - Pull the Latest ESP-IDF Docker Image:
docker pull espressif/idf:latest
- Verify the Image: Open Docker Dashboard to confirm the espressif/idf:latest image is listed.
- Check for Existing Python Installation:
python3 --version
- Install Xcode Command Line Tools:
xcode-select --install
- Install Homebrew:
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- Update Homebrew:
brew update
- Install Python 3:
brew install python3
- Verify Python Installation:
python3 --version
- Install PIP:
python3 -m ensurepip
- Install esptool.py Using PIP:
pip3 install esptool
- Verify esptool.py Installation:
esptool.py --version