From 60d59d4f483fbb1c49b8de6a5c39d137a64b2cd0 Mon Sep 17 00:00:00 2001 From: Eric Date: Wed, 1 Jan 2014 18:18:51 -0800 Subject: [PATCH] Created Getting Started (markdown) --- Getting-Started.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Getting-Started.md diff --git a/Getting-Started.md b/Getting-Started.md new file mode 100644 index 0000000..83118be --- /dev/null +++ b/Getting-Started.md @@ -0,0 +1,31 @@ +# Getting Started with MicroPython + +## UNIX + +### Debian, Ubuntu, Mint, and variants + +The following packages will need to be installed before you can compile and run MicroPython: + +* build-essential +* libreadline-dev +* git + +To install these packages, use the following command: + +> sudo apt-get install build-essential libreadline-dev git + +Then, clone the repository to your local machine: + +> git clone https://github.com/micropython/micropython.git + +Change directory to the Unix build directory: + +> cd ./micropython/unix + +And then make the executable + +> make + +At that point, you will have a functioning micropython executable, which may be launched with the command: + +> ./py \ No newline at end of file