-
-
Notifications
You must be signed in to change notification settings - Fork 435
/
Copy pathide-v2-downloading-and-installing.md
82 lines (53 loc) · 2.87 KB
/
ide-v2-downloading-and-installing.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
title: 'Downloading and installing the Arduino IDE 2'
difficulty: beginner
description: 'A quick guide on how to install the IDE 2 on your operating system.'
tags:
- Installation
author: 'Karl Söderby'
---
## Downloading and Installing the Arduino IDE 2
In this tutorial, we will show how to download and install the Arduino IDE 2 on your Windows, Mac, or Linux computer.
You can easily download the editor from the [Arduino Software page](https://www.arduino.cc/en/software).
### Requirements
- **Windows** - Win 10 and newer, 64 bits
- **Linux** - 64 bits
- **macOS** - Version 10.15: "Catalina" or newer, 64 bits
### The Arduino IDE 2
The Arduino IDE 2 is an open-source project. It is a big step from its sturdy predecessor, Arduino IDE 1.x, and comes with revamped UI, improved board & library manager, debugger, autocomplete feature and much more.
### Download the Editor
Downloading the Arduino IDE 2 is done through the [Arduino Software page](https://www.arduino.cc/en/software). Here you will also find information on the other editors available to use.
### Installation
#### Windows
To install the Arduino IDE 2 on a Windows computer, simply run the file downloaded from the software page.

Follow the instructions in the installation guide. The installation may take several minutes.

You can now use the Arduino IDE 2 on your Windows computer!
#### macOS
To install the Arduino IDE 2 on a macOS computer, simply copy the downloaded file into your application folder.

You can now use the Arduino IDE 2 on your macOS computer!
#### Linux
To install the Arduino IDE 2 on Linux, first download the **AppImage 64 bits (X86-64)** from the [Arduino Software page](https://www.arduino.cc/en/software).
Before we can launch the editor, we need to first make it an **executable file**. This is done by:
- right-click the file,
- choose **Properties**,
- select **Permissions** tab,
- tick the **Allow executing file as program** box.

You can now double click the file to launch the Arduino IDE 2 on your Linux machine. In case you cannot run the AppImage file, make sure that FUSE is installed on your system.
In Ubuntu (>= 22.04):
```bash
sudo add-apt-repository universe
sudo apt install libfuse2
```
In Fedora
```bash
dnf install fuse
```
See instructions for installing FUSE on your distribution [here](https://github.com/AppImage/AppImageKit/wiki/FUSE).
To enable the Arduino IDE to access the serial port and upload code to your board, the following rule can be added to `/etc/udev/rules.d/99-arduino.rules`.
```
SUBSYSTEMS=="usb", ATTRS{idVendor}=="2341", GROUP="plugdev", MODE="0666"
```