Tutorials/Install KDE software: Difference between revisions

From KDE UserBase Wiki
No edit summary
m (fixes)
(46 intermediate revisions by 10 users not shown)
Line 1: Line 1:
To install KDE software we recommend using the means of your distribution. [[Special:MyLanguage/Tutorials/find out your distribution|Here is how you find out your distribution]].
<languages />
<translate>


= SUSE Linux =
== Install KDE software == <!--T:1-->
With SUSE Linux you install software using yast, for example to install [[kwrite]] you will [[Special:MyLanguage/Tutorials/open a console|open a console]] and enter
yast -i kwrite


= Ubuntu =
<!--T:2-->
With Ubuntu Linux you install software using apt-get. For example to install [[kwrite]] you will [[Special:MyLanguage/Tutorials/open a console|open a console]] and enter
To install KDE software we recommend using the means of your distribution. [http://www.linuxintro.org/wiki/Find_out_your_distribution Here is how you find your distribution's name and version].
sudo apt-get install kwrite
 
<!--T:3-->
{{Tip|1=When you see mono-spaced text on a gray background <code>like this</code> that is something that you need to type in, exactly as it appears there.}}
 
</translate><span id="Using Package Managers"></span><translate>
 
== From the GUI == <!--T:4-->
=== Discover ===
 
<!--T:39-->
Discover is the KDE Software Center and work with all the distribution supporting appstream (Ubuntu, Debian, Arch-Linux,  OpenSUSE, Red Hat, Fedora, ...). If you want more info about discover, visit the [[Special:myLanguage/Discover|discover]] page.
 
 
<!--T:40-->
[[File:Discover-package-management.png|center|500px|thumb|Searching for KDE in Discover.]]
 
=== openSUSE - YaST === <!--T:5-->
 
<!--T:41-->
In openSUSE, you have the choice between using discover and YaST software management tool.
 
<!--T:6-->
You find openSUSE's package management tool in the <menuchoice>Computer</menuchoice> tab of the start menu. Open that and click on the <menuchoice>Software management</menuchoice> icon to start the package manager.
 
<!--T:7-->
[[File:Yast-package-management-1.png|center|500px|thumb|Searching for KDE in the YaST sofware management.]]
 
<!--T:8-->
Use the search field to find the package that you wish to install; you can search on the package name or the package description, and you only need to enter part of the name. You will then be presented with a list of packages matching your search. Click the selection boxes for the packages to be installed and then click <menuchoice>Accept</menuchoice>. See [http://en.opensuse.org/Package_management this page] for more on package management and openSUSE.
 
=== Windows Store === <!--T:42-->
 
<!--T:43-->
Some KDE applications are also available in the Windows Store. For example, you can buy [https://www.microsoft.com/en-us/p/krita/9n6x57zgrw96 Krita] a digital painting software or [https://www.microsoft.com/en-us/p/kstars/9pprz2qhlxtg KStars].
 
== From the command line == <!--T:27-->
 
<!--T:28-->
If you find that using a package manager is unbearably slow, you will want to use command-line installation. This is much faster, but the disadvantage is that you need to know the exact name of the package you want to install.  Each system has helpful commands for searching, for instance, so try using the first word of install command below, with --help appended.  As an example, <code>yum --help</code> will list the commands you can use for Fedora, but they are many and can be confusing at first.
 
=== openSUSE === <!--T:29-->
 
<!--T:30-->
With openSUSE you install software using '''zypper'''
for example to install [[Special:myLanguage/KWrite|KWrite]] you will [[Special:MyLanguage/Tutorials/Open_a_console|open a console]] and enter
<code>zypper in kwrite</code>.
 
=== Ubuntu === <!--T:31-->
 
<!--T:32-->
With Ubuntu Linux you install software using '''apt'''. For example to install [[Special:myLanguage/KWrite|KWrite]] you will [[Special:MyLanguage/Tutorials/Open_a_console|open a console]] and enter
<code>sudo apt install kwrite</code>
 
=== Fedora === <!--T:33-->
 
<!--T:34-->
Fedora uses '''yum''' so to install [[Special:myLanguage/KWrite|KWrite]] you would [[Special:MyLanguage/Tutorials/Open_a_console|open a console]] and type <code>yum install kwrite</code>  If you are unsure of the name of a package, you can use ''yum list'' with wildcards to see all the packages with a word as part of the package name &mdash; for example <code>yum list *network*</code> will list all available packages with "network" as part of the name.  Casting even wider, <code>yum search mpeg</code> will list all packages that either have ''mpeg'' in the name or in the description of the package.
 
=== Mageia and OpenMandriva Lx === <!--T:35-->
 
<!--T:36-->
You can use '''urpmi''' to install KDE software from a command line.  Other useful commands can be found at [http://en.wikipedia.org/wiki/Urpmi Wikipedia's Urpmi page]
 
=== Arch linux and Manjaro === <!--T:44-->
 
<!--T:45-->
With Arch linux and arch linux based distribution like Manjaro, you can install software using the '''pacman''' utility. For example to install [[Special:myLanguage/KWrite|KWrite]] you will [[Special:MyLanguage/Tutorials/Open_a_console|open a console]] and enter
<code>sudo pacman -S kwrite</code>
 
<!--T:37-->
[[Category:Getting_Started]]
</translate>

Revision as of 17:34, 29 September 2018

Install KDE software

To install KDE software we recommend using the means of your distribution. Here is how you find your distribution's name and version.

Tip

When you see mono-spaced text on a gray background like this that is something that you need to type in, exactly as it appears there.

From the GUI

Discover

Discover is the KDE Software Center and work with all the distribution supporting appstream (Ubuntu, Debian, Arch-Linux, OpenSUSE, Red Hat, Fedora, ...). If you want more info about discover, visit the discover page.


Searching for KDE in Discover.

openSUSE - YaST

In openSUSE, you have the choice between using discover and YaST software management tool.

You find openSUSE's package management tool in the Computer tab of the start menu. Open that and click on the Software management icon to start the package manager.

Searching for KDE in the YaST sofware management.

Use the search field to find the package that you wish to install; you can search on the package name or the package description, and you only need to enter part of the name. You will then be presented with a list of packages matching your search. Click the selection boxes for the packages to be installed and then click Accept. See this page for more on package management and openSUSE.

Windows Store

Some KDE applications are also available in the Windows Store. For example, you can buy Krita a digital painting software or KStars.

From the command line

If you find that using a package manager is unbearably slow, you will want to use command-line installation. This is much faster, but the disadvantage is that you need to know the exact name of the package you want to install. Each system has helpful commands for searching, for instance, so try using the first word of install command below, with --help appended. As an example, yum --help will list the commands you can use for Fedora, but they are many and can be confusing at first.

openSUSE

With openSUSE you install software using zypper for example to install KWrite you will open a console and enter zypper in kwrite.

Ubuntu

With Ubuntu Linux you install software using apt. For example to install KWrite you will open a console and enter sudo apt install kwrite

Fedora

Fedora uses yum so to install KWrite you would open a console and type yum install kwrite If you are unsure of the name of a package, you can use yum list with wildcards to see all the packages with a word as part of the package name — for example yum list *network* will list all available packages with "network" as part of the name. Casting even wider, yum search mpeg will list all packages that either have mpeg in the name or in the description of the package.

Mageia and OpenMandriva Lx

You can use urpmi to install KDE software from a command line. Other useful commands can be found at Wikipedia's Urpmi page

Arch linux and Manjaro

With Arch linux and arch linux based distribution like Manjaro, you can install software using the pacman utility. For example to install KWrite you will open a console and enter sudo pacman -S kwrite