pxt-calliope/docs/raspberry-pi.md

29 lines
698 B
Markdown
Raw Normal View History

2016-09-08 09:00:07 +02:00
# Raspberry Pi and Raspbian
It is possible to run the web editor or [command line interface](/cli) from Raspbian on Raspberry Pi 2 or 3.
## Web editor
The web editor requires to install IceWeasel (Firefox) as the built-in browser cannot handle it.
```
sudo apt-get install iceweasel
```
Once installed simply navigate to https://codethemicrobit.com or type
```
firefox https://codethemicrobit.com
```
## Command line
The PXT command line also works on Raspbian and allows to run a local server and/or edit programs from any text editor.
* Node.JS 6.0 needs installed
To install all the tools,
```
2016-09-08 09:46:43 +02:00
curl -s https://raw.githubusercontent.com/Microsoft/pxt-rpi/master/install.sh | sh -
2016-09-08 09:00:07 +02:00
```