Skip to content

Instantly share code, notes, and snippets.

@larsch
Last active January 6, 2017 16:57
Show Gist options
  • Save larsch/4a60e3628e3d2c82b4f4 to your computer and use it in GitHub Desktop.
Save larsch/4a60e3628e3d2c82b4f4 to your computer and use it in GitHub Desktop.
Bootstrap script for ESP8266 SDK on Arch Linux
#!/bin/sh -exu
sudo pacman -S --needed --noconfirm base-devel python2 expat ncurses gperf git wget unzip
sudo ln -sf /usr/bin/python2 /usr/bin/python
git clone --recursive https://github.com/pfalcon/esp-open-sdk.git
cd esp-open-sdk
make STANDALONE=y
@mabushey
Copy link

mabushey commented Sep 9, 2016

You need to add help2man to the pacman install command.

@waaaaargh
Copy link

Aslo linking python2 to /usr/bin/python doesn't seem like a good idea at all.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment