Software Install Guide
Overview
Arduino IDE
The Arduino IDE is a software tool used for writing, compiling, and uploading code to Arduino boards. Follow these steps to install Arduino IDE on your computer:
Step 1: Download Arduino IDE
- Visit the Arduino Software download page.
- Choose the appropriate version for your operating system (Windows, macOS, Linux).
- Click on the download link to download the Arduino IDE installer.
Step 2: Install Arduino IDE
Windows
- Once the download is complete, locate the downloaded installer file (usually a .exe file).
- Double-click on the installer file to start the installation process.
- Follow the on-screen instructions to complete the installation.
- After installation, you may need to restart your computer.
macOS
- Locate the downloaded Arduino IDE disk image file (usually a .dmg file).
- Double-click on the disk image file to mount it.
- Drag the Arduino IDE application to your Applications folder to install it.
- Eject the disk image after installation.
Linux
- To install the Arduino IDE 2 on Linux, first download the AppImage 64 bits (X86-64) from the Arduino Software page.
- Before we can launch the editor, we need to first make it an executable file. This is done by:
- Right-clicking the file
- Choose Properties
- Select Permissions
- Rick 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):
sudo add-apt-repository universe sudo apt install libfuse2
- In Fedora
dnf install fuse
- See instructions for installing FUSE on your distribution here.
- 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"
- In Ubuntu (>= 22.04):
Conclusion
Congratulations! You have successfully installed the Arduino IDE on your system.
KiCad
Step 1: Download KiCad 8.0
- Visit the KiCad Downloads page.
- Look for the KiCad 8.0 version compatible with your operating system.
- Click on the download link to get the installer.
Step 2: Install KiCad 8.0
Windows
- Once the download is complete, locate the downloaded installer file (usually a .exe file).
- Double-click on the installer file to start the installation process.
- Follow the on-screen instructions provided by the installer.
- Choose the installation directory and any additional options as needed.
- Wait for the installation to complete.
- After installation, you may need to restart your computer.
macOS
- Locate the downloaded KiCad 8.0 disk image file (usually a .dmg file).
- Double-click on the disk image file to mount it.
- Drag the KiCad 8.0 application to your Applications folder to install it.
- Eject the disk image after installation.
Linux
Open a terminal window.
Run the following command to add the KiCad repository:
shsudo add-apt-repository ppa:kicad/kicad-8.0-releases
After adding the repository, update the package list using the following command:
shsudo apt update
Once the package list is updated, proceed to install KiCad by running:
shsudo apt install kicad
Follow any prompts or instructions that appear during the installation process.
Conclusion
Congratulations! You have successfully installed KiCad 8.0 on your system.