From Fedora Project Wiki

(Creating article.)
 
(Expanding)
 
(4 intermediate revisions by the same user not shown)
Line 2: Line 2:


== Installation ==
== Installation ==
=== DNF ===
To install GNOME Builder merely run:
To install GNOME Builder merely run:


<pre>
<pre>
sudo dnf install gnome-builder
$ sudo dnf install gnome-builder
</pre>
 
where $ denotes a user console, as opposed to a root console.
 
=== Flatpak ===
First one needs to install Flatpak with:
 
<pre>
$ sudo dnf install flatpak
</pre>
</pre>
then to install GNOME Builder with Flatpak run:
<pre>
$ flatpak remote-add --from gnome https://sdk.gnome.org/gnome.flatpakrepo
$ flatpak remote-add --from gnome-apps https://sdk.gnome.org/gnome-apps.flatpakrepo
$ flatpak install gnome-apps org.gnome.Builder
</pre>
after installing Builder run:
<pre>
$ flatpak run org.gnome.Builder
</pre>
to start Builder with Flatpak. After you reboot, you should find icons for GNOME Builder in your application menus.


[[Category:GNOME core applications]]
[[Category:GNOME core applications]]
[[Category:Integrated development environment]]
[[Category:Integrated development environments]]

Latest revision as of 12:09, 8 January 2017

GNOME Builder is a free and open-source IDE that is written in C and built using the GTK+ toolkit. As its name suggests it is part of the GNOME core application suite and as such it is in the official repositories of Fedora. It has support for the following programming languages: C, C++, Python, Rust and Vala.

Installation

DNF

To install GNOME Builder merely run:

$ sudo dnf install gnome-builder

where $ denotes a user console, as opposed to a root console.

Flatpak

First one needs to install Flatpak with:

$ sudo dnf install flatpak

then to install GNOME Builder with Flatpak run:

$ flatpak remote-add --from gnome https://sdk.gnome.org/gnome.flatpakrepo
$ flatpak remote-add --from gnome-apps https://sdk.gnome.org/gnome-apps.flatpakrepo
$ flatpak install gnome-apps org.gnome.Builder

after installing Builder run:

$ flatpak run org.gnome.Builder

to start Builder with Flatpak. After you reboot, you should find icons for GNOME Builder in your application menus.