How to use it?

0) Install apt-transport-https

We prefer to use HTTPS connection instead insecure HTTP!
$ sudo apt-get install apt-transport-https

1) Automaticly add repository

$ wget -q -O - https://repo.i2pd.xyz/.help/add_repo | sudo bash -s -

2) Install i2pd as any other software package:

$ sudo apt-get update
$ sudo apt-get install i2pd

Manual way of adding repository

Manually add repository to /etc/apt/sources.list.d/i2pd.list:

(!) Please refer to your system documentation how to find release codename, or check /etc/os-release contents.

deb https://repo.i2pd.xyz/<nix> <dist> main
deb-src https://repo.i2pd.xyz/<nix> <dist> main

Import key that is used to sign the release:

$ gpg --keyserver keys.gnupg.net --recv-keys 98EBCFE2
$ gpg -a --export 98EBCFE2 | sudo apt-key add -

or (wget)

$ wget -q -O - https://repo.i2pd.xyz/r4sas.gpg | sudo apt-key add -

or (tor socks proxy and curl)

$ curl -x socks5://127.0.0.1:9050 -sL https://repo.i2pd.xyz/r4sas.gpg | sudo apt-key add -