7 lines
260 B
Bash
Executable file
7 lines
260 B
Bash
Executable file
#!/bin/bash
|
|
sudo apt-get -yqq update
|
|
sudo apt-get install -y build-essential git python python-pip
|
|
git clone https://github.com/adafruit/micropython.git -b 2.x
|
|
make -C micropython/mpy-cross
|
|
export PATH=$PATH:$PWD/micropython/mpy-cross/
|
|
sudo pip install shyaml
|