Created
November 8, 2018 13:33
-
-
Save sgk/fec54fa9c13bd5c26742751f032dc977 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
nodeenv --prebuilt --node=8.9.4 nodeenv | |
. nodeenv/bin/activate | |
git clone https://github.com/microsoft/pxt | |
cd pxt | |
npm install | |
npm run build | |
cd .. | |
git clone https://github.com/microsoft/pxt-common-packages | |
cd pxt-common-packages | |
npm install | |
cd .. | |
git clone https://github.com/microsoft/pxt-microbit | |
cd pxt-microbit | |
npm install -g pxt | |
npm install | |
npm link ../pxt | |
npm link ../pxt-common-packages | |
pxt serve |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment