Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Update ppa installation information #399

Merged
merged 2 commits into from
Nov 30, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions content/download/_js-reynaud-ppa.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,15 @@ If you prefer to use the shell, you can enter these commands into a terminal:
[source,bash]
sudo add-apt-repository --yes ppa:js-reynaud/kicad-5.1
sudo apt update
sudo apt install --install-suggests kicad
sudo apt install --install-recommends kicad
# If you want demo projects
sudo apt install kicad-demo


This will perform a full installation of KiCad. If you don't want to install all packages you can use:

[source,bash]
sudo apt install kicad
sudo apt install --no-install-recommends kicad

If you don't do a "full installation" you should be interested to install also:

Expand Down Expand Up @@ -64,11 +67,14 @@ If you prefer to use the shell, you can enter these commands into a terminal:
[source,bash]
sudo add-apt-repository --yes ppa:js-reynaud/kicad-5
sudo apt update
sudo apt install kicad
sudo apt install kicad --install-recommends kicad
# If you want demo projects
sudo apt install kicad-demo

This will perform a full installation of KiCad. If you don't want to install all packages you can use:

You can also install suggested package to have a full install:
[source,bash]
sudo apt install --install-suggests kicad
sudo apt install --no-install-recommends kicad

If you don't do a "full installation" you should be interested to install also:

Expand Down