KDevelop/Install: Difference between revisions

    From KDE UserBase Wiki
    (... not for Gentoo ;))
    (4 intermediate revisions by 3 users not shown)
    Line 5: Line 5:
    Many Linux distributions include KDevelop by default, and most have a package management system that enables you to easily install KDevelop. Generally, you should install from the package management system.
    Many Linux distributions include KDevelop by default, and most have a package management system that enables you to easily install KDevelop. Generally, you should install from the package management system.


    If for some reason you cannot or do not want to use your distribution's packaging system (outdated packages, no packages), for versions of KDevelop since 5.0.0, you can also find a '''cross-distribution binary''' on the KDE servers, under bin/linux/ in the respective version's folder: http://download.kde.org/stable/kdevelop/
    If for some reason you cannot or do not want to use your distribution's packaging system (outdated packages, no packages), for versions of KDevelop since 5.0, you can also find a '''cross-distribution binary''' (AppImage)  [https://www.kdevelop.org/download here].


    === Ubuntu ===  
    === Ubuntu ===  
    Line 13: Line 13:
    </pre>
    </pre>


    === OpenSuse ===
    === openSUSE ===


    <pre>
    <pre>
    zypper install kdevelop
    zypper install kdevelop5
    </pre>
    </pre>


    Line 28: Line 28:
    === Fedora ===
    === Fedora ===


    The latest version of KDevelop and KDevelop-php (with docs) packaged for Fedora is contained in the default repository and can be installed using:
    The latest version of KDevelop, KDevelop-php (with docs), and KDevelop-python packaged for Fedora is contained in the default repository and can be installed using:
    <pre>
    <pre>
    yum install kdevelop
    dnf install kdevelop
    </pre>
    </pre>
    resp.
    resp.
    <pre>
    <pre>
    yum install kdevelop-php
    dnf install kdevelop-php
    </pre>
    </pre>
    or by installing the above packages through the '''Apper''' package manager.
    resp.
    <pre>
    dnf install kdevelop-python
    </pre>
    or by installing the above packages through the '''Dnfdragora''' package manager.


    === Gentoo Linux ===
    === Gentoo Linux ===


    KDevelop, KDevelop-php (with docs) and KDevelop-Python are in the kde overlay. To install any just type:
    KDevelop, KDevelop-php and KDevelop-Python are available in the Gentoo package repository. Make sure to check the available USE flags for configuration. To install just type:
    <pre>
    <pre>
    layman -a kde
    emerge -a kdevelop kdevelop-php kdevelop-python
    emerge -av kdevelop
    pacman -av kdevelop-python
    </pre>
    </pre>



    Revision as of 17:36, 21 October 2019

    How to install KDevelop

    GNU/Linux

    Many Linux distributions include KDevelop by default, and most have a package management system that enables you to easily install KDevelop. Generally, you should install from the package management system.

    If for some reason you cannot or do not want to use your distribution's packaging system (outdated packages, no packages), for versions of KDevelop since 5.0, you can also find a cross-distribution binary (AppImage) here.

    Ubuntu

    sudo apt-get install kdevelop
    

    openSUSE

    zypper install kdevelop5
    

    Arch Linux

    KDevelop, KDevelop-php (with docs) and KDevelop-Python are in the [extra] repository. To install any just type:

    pacman -S kdevelop kdevelop-php kdevelop-python
    

    Fedora

    The latest version of KDevelop, KDevelop-php (with docs), and KDevelop-python packaged for Fedora is contained in the default repository and can be installed using:

    dnf install kdevelop
    

    resp.

    dnf install kdevelop-php
    

    resp.

    dnf install kdevelop-python
    

    or by installing the above packages through the Dnfdragora package manager.

    Gentoo Linux

    KDevelop, KDevelop-php and KDevelop-Python are available in the Gentoo package repository. Make sure to check the available USE flags for configuration. To install just type:

    emerge -a kdevelop kdevelop-php kdevelop-python
    

    Microsoft Windows

    You can download the KDevelop for Windows installer from the KDevelop download page.

    KDevelop can also be compiled from source on Windows via KDE's Craft tool. This tool will set up a development environment (including a Qt + KF5 build), and then compiles & install KDevelop. To get started, visit the Windows build instructions.

    To compile & install kdevelop just type this into your command window:

    craft kdevelop
    

    Run kdevelop by just typing

    kdevelop
    

    Mac OS X

    There's a homebrew repository for Kate and KDevelop. See installation instructions there.

    From Sources

    You can compile it like any other KDE project: See the KDevelop-specific TechBase instructions instructions or the Getting_Started/Build general instructions general build instructions for KDE projects.