2017-11-27 03:14:32 +05:30
---
date: "2016-12-01T16:00:00+02:00"
title: "Installation from package"
slug: "install-from-package"
2021-06-30 01:12:47 +05:30
weight: 20
2020-12-09 12:17:06 +05:30
toc: false
2017-11-27 03:14:32 +05:30
draft: false
menu:
sidebar:
parent: "installation"
name: "From package"
weight: 20
identifier: "install-from-package"
---
# Installation from package
2020-12-09 12:17:06 +05:30
**Table of Contents**
2020-12-08 10:22:26 +05:30
{{< toc > }}
2020-11-18 05:21:22 +05:30
## Alpine Linux
2017-11-27 03:14:32 +05:30
2020-11-18 05:21:22 +05:30
Alpine Linux has [Gitea ](https://pkgs.alpinelinux.org/packages?name=gitea&branch=edge ) in its community repository which follows the latest stable version.
2018-01-09 04:18:42 +05:30
2020-11-18 05:21:22 +05:30
```sh
apk add gitea
```
2018-01-09 04:18:42 +05:30
2020-11-18 05:21:22 +05:30
## Arch Linux
2017-11-27 03:14:32 +05:30
2020-11-18 05:21:22 +05:30
The rolling release distribution has [Gitea ](https://www.archlinux.org/packages/community/x86_64/gitea/ ) in their official community repository and package updates are provided with new Gitea releases.
2020-05-17 16:39:56 +05:30
2020-11-18 05:21:22 +05:30
```sh
pacman -S gitea
```
## Arch Linux ARM
Arch Linux ARM provides packages for [aarch64 ](https://archlinuxarm.org/packages/aarch64/gitea ), [armv7h ](https://archlinuxarm.org/packages/armv7h/gitea ) and [armv6h ](https://archlinuxarm.org/packages/armv6h/gitea ).
2020-05-17 16:39:56 +05:30
```sh
2020-11-18 05:21:22 +05:30
pacman -S gitea
2020-05-17 16:39:56 +05:30
```
2021-07-24 18:36:38 +05:30
## Canonical Snap
There is a [Gitea Snap ](https://snapcraft.io/gitea ) package which follows the latest stable version.
2022-07-22 15:42:27 +05:30
```sh
2021-07-24 18:36:38 +05:30
snap install gitea
2022-07-22 15:42:27 +05:30
```
2021-07-24 18:36:38 +05:30
2021-01-23 20:14:00 +05:30
## SUSE and openSUSE
2022-07-28 06:52:47 +05:30
OpenSUSE build service provides packages for [openSUSE and SLE ](https://software.opensuse.org/download/package?package=gitea&project=devel%3Atools%3Ascm )
2021-01-23 20:14:00 +05:30
in the Development Software Configuration Management Repository
2017-11-27 03:14:32 +05:30
## Windows
2020-05-25 00:47:33 +05:30
There is a [Gitea ](https://chocolatey.org/packages/gitea ) package for Windows by [Chocolatey ](https://chocolatey.org/ ).
2017-11-27 03:14:32 +05:30
2020-05-25 00:47:33 +05:30
```sh
choco install gitea
```
Or follow the [deployment from binary ]({{< relref "from-binary.en-us.md" >}} ) guide.
2020-12-09 12:17:06 +05:30
2017-11-27 03:14:32 +05:30
## macOS
2018-01-09 04:18:42 +05:30
Currently, the only supported method of installation on MacOS is [Homebrew ](http://brew.sh/ ).
Following the [deployment from binary ]({{< relref "from-binary.en-us.md" >}} ) guide may work,
but is not supported. To install Gitea via `brew` :
2017-11-27 03:14:32 +05:30
```
2020-05-12 18:21:41 +05:30
brew tap gitea/tap https://gitea.com/gitea/homebrew-gitea
2017-11-27 03:14:32 +05:30
brew install gitea
```
## FreeBSD
2018-01-09 04:18:42 +05:30
A FreeBSD port `www/gitea` is available. To install the pre-built binary package:
2017-11-27 03:14:32 +05:30
```
pkg install gitea
```
2018-01-09 04:18:42 +05:30
For the most up to date version, or to build the port with custom options,
[install it from the port ](https://www.freebsd.org/doc/handbook/ports-using.html ):
2017-11-27 03:14:32 +05:30
```
su -
cd /usr/ports/www/gitea
make install clean
```
2018-01-09 04:18:42 +05:30
The port uses the standard FreeBSD file system layout: config files are in `/usr/local/etc/gitea` ,
bundled templates, options, plugins and themes are in `/usr/local/share/gitea` , and a start script
is in `/usr/local/etc/rc.d/gitea` .
2017-11-27 03:14:32 +05:30
2018-01-09 04:18:42 +05:30
To enable Gitea to run as a service, run `sysrc gitea_enable=YES` and start it with `service gitea start` .
2018-09-15 11:58:53 +05:30
2020-05-14 04:28:49 +05:30
## Third-party
2020-11-28 11:42:22 +05:30
Various other third-party packages of Gitea exist.
2020-05-14 04:28:49 +05:30
To see a curated list, head over to [awesome-gitea ](https://gitea.com/gitea/awesome-gitea/src/branch/master/README.md#user-content-packages ).
Do you know of an existing package that isn't on the list? Send in a PR to get it added!