> For the complete documentation index, see [llms.txt](https://guide.petoi.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.petoi.com/arduino-ide/install-arduino-ide-on-chromebook.md).

# Install Arduino IDE on Chromebook

After [**turning on Linux**](/technical-support/set-up-development-environment-on-chromebook.md) on the Chromebook, you can access the Linux environment via the terminal app.

Please follow the following steps to install the Arduino IDE:

## Check the type of your OS version

<figure><img src="/files/Fy6jFs5A2deqjAWB6ec3" alt=""><figcaption></figcaption></figure>

## Download package

Open the website ([www.arduino.cc/en/software](https://www.arduino.cc/en/software)) and download the corresponding type of Legacy Arduino IDE:

<figure><img src="/files/qZTrJYJpye9JkGlmAy6q" alt=""><figcaption></figcaption></figure>

## Installation

After downloading complete, set the folder ***Downloads*** in the file browser to share with Linux, as mentioned above. Use the following commands to install the **Arduino IDE,** e.g., ***arduino-1.8.19-linux64.tar.xz*** is the downloading file.

```
cd /mnt/chromeos/MyFiles/Downloads/
sudo apt-get install xz-utils
sudo tar -C /opt -xf arduino-1.8.19-linux64.tar.xz
cd /opt
ls
cd arduino-1.8.19/
ls
sudo ./install.sh
```

## Set up the Arduino IDE development environment for the mainboard

You can open the **Arduino IDE** as follows:

<figure><img src="/files/Ek7txzYIkbwUxU8CPp47" alt=""><figcaption></figcaption></figure>

To set up the development environment, please look at the subpage according to the type of robot mainboard.

<figure><img src="/files/vr9Kc6K006WPQ7AfFIyD" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://guide.petoi.com/arduino-ide/install-arduino-ide-on-chromebook.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
