Skip to content

Build MicroPython Runtime for Unix

Parallax Git Administrator edited this page Sep 4, 2019 · 1 revision

Build the Unix Target of MicroPython runtime

(from instructions on https://github.com/micropython/micropython readme.md):

  • Get and build dependencies
git submodule update --init
sudo apt install libffi-dev pkg-config
make deplibs
  • Build MicroPython
make
cd ports/unix
  • Run it
./micropython
  • Get Help
./micropython --help

Exit with Ctrl-D

Clone this wiki locally