Skip to content

Commit 4fbee22

Browse files
committed
move to binary esptool. Run get.py/get.exe to get it!
With this step we remove all dependencies, but git. Mac and Linux come with Python by default, so they will keep using get.py to update the toolchain and support binaries. Windows users have an "All point and click" installation option that requires only git and Arduino to be downloaded. Fingers crossed :)
1 parent 93d2bc7 commit 4fbee22

16 files changed

+83
-36
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11

22
tools/xtensa-esp32-elf
33
tools/dist
4+
tools/esptool
5+
tools/esptool.exe

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ Most of the framework is implemented. Most noticable is the missing analogWrite.
3030
- Open Terminal and execute the following command (copy->paste and hit enter):
3131

3232
```bash
33-
curl -o get-pip.py https://bootstrap.pypa.io/get-pip.py && \
34-
sudo python get-pip.py && \
35-
sudo pip install pyserial && \
3633
mkdir -p ~/Documents/Arduino/hardware/espressif && \
3734
cd ~/Documents/Arduino/hardware/espressif && \
3835
git clone https://github.com/espressif/arduino-esp32.git esp32 && \
@@ -48,9 +45,6 @@ Most of the framework is implemented. Most noticable is the missing analogWrite.
4845
```bash
4946
sudo usermod -a -G dialout $USER && \
5047
sudo apt-get install git && \
51-
wget https://bootstrap.pypa.io/get-pip.py && \
52-
sudo python get-pip.py && \
53-
sudo pip install pyserial && \
5448
mkdir -p ~/Arduino/hardware/espressif && \
5549
cd ~/Arduino/hardware/espressif && \
5650
git clone https://github.com/espressif/arduino-esp32.git esp32 && \

doc/gitbash-admin-start.png

-38.3 KB
Binary file not shown.

doc/gitbash-admin.png

-33.8 KB
Binary file not shown.

doc/gitbash-user.png

-50.4 KB
Binary file not shown.

doc/python-install.png

-101 KB
Binary file not shown.

doc/win-gui-1.png

27.1 KB
Loading

doc/win-gui-2.png

35.8 KB
Loading

doc/win-gui-3.png

26.9 KB
Loading

doc/win-gui-4.png

35.6 KB
Loading

0 commit comments

Comments
 (0)