19 lines
627 B
Markdown
19 lines
627 B
Markdown
|
+++
|
||
|
title = "Setting up Norg"
|
||
|
weight = 0
|
||
|
+++
|
||
|
## Prerequisites
|
||
|
Install [Borg](https://borgbackup.readthedocs.io/en/stable/installation.html) or [Restic](https://restic.net/#installation) as these do not get installed automatically.
|
||
|
|
||
|
You will also need to install [Nim](https://nim-lang.org) and `nimble`
|
||
|
- [FreeBSD](https://www.freebsd.org) - `pkg install nimble`
|
||
|
- [Arch Linux](https://archlinux.org) - `pacman -S nimble`
|
||
|
- [Debian](https://www.debian.org) - `apt install nim`
|
||
|
|
||
|
## Installation
|
||
|
Norg is listed on [Nimble Directory](https://nimble.directory) so you can install
|
||
|
norg using nimble
|
||
|
```sh
|
||
|
nimble install norg
|
||
|
```
|