2017-11-27 03:14:32 +05:30
|
|
|
---
|
|
|
|
date: "2016-12-01T16:00:00+02:00"
|
|
|
|
title: "Installation from package"
|
|
|
|
slug: "install-from-package"
|
|
|
|
weight: 10
|
|
|
|
toc: true
|
|
|
|
draft: false
|
|
|
|
menu:
|
|
|
|
sidebar:
|
|
|
|
parent: "installation"
|
|
|
|
name: "From package"
|
|
|
|
weight: 20
|
|
|
|
identifier: "install-from-package"
|
|
|
|
---
|
|
|
|
|
|
|
|
# Installation from package
|
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
## Debian
|
2017-11-27 03:14:32 +05:30
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
The only distribution that has any "official" package of Gitea is Debian. This is currently
|
|
|
|
in Debian's [contrib](https://wiki.debian.org/SourcesList). This is (currently) only available
|
|
|
|
in Debian testing and unstable (but should be installable/functional on stable).
|
|
|
|
|
|
|
|
- Edit /etc/apt/sourced.list
|
|
|
|
- Add "contrib" to "deb http://deb.debian.org/debian unstable main contrib"
|
|
|
|
- apt-get update
|
|
|
|
- apt-get install gitea
|
|
|
|
|
|
|
|
For other distributions, see the [deployment from binary]({{< relref "from-binary.en-us.md" >}}) guide.
|
2017-11-27 03:14:32 +05:30
|
|
|
|
|
|
|
## Windows
|
|
|
|
|
2018-01-09 04:18:42 +05:30
|
|
|
There are no published packages for Windows. This page will change when packages are published,
|
|
|
|
in the form of `MSI` installers or via [Chocolatey](https://chocolatey.org/). In the meantime
|
|
|
|
the [deployment from binary]({{< relref "from-binary.en-us.md" >}}) guide.
|
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
|
|
|
|
|
|
|
```
|
|
|
|
brew tap go-gitea/gitea
|
|
|
|
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`.
|