265 lines
9.3 KiB
HTML
265 lines
9.3 KiB
HTML
{% extends "global/layout.html" %}
|
|
{%- from "downloads/macros" import package, package_outer with context -%}
|
|
|
|
{% set release_signer = 'zzz' %}
|
|
|
|
{% block title %}{{ _('Download') }}{% endblock %}
|
|
{% block content_nav %}
|
|
<ul>
|
|
<li><a href="#windows">Windows</a>
|
|
<li><a href="#mac">Mac OS X</a>
|
|
<li><a href="#unix">GNU/Linux / BSD / Solaris</a>
|
|
<li><a href="#deb">Debian / Ubuntu</a>
|
|
<li><a href="#android">Android</a>
|
|
<li><a href="#source">{{ _('Source package') }}</a>
|
|
<li><a href="#auto">{{ _('Automatic updates') }}</a>
|
|
<li><a href="#update-file">{{ _('Manual updates') }}</a>
|
|
</ul>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<!--<h3>{{ _('Lab') }}</h3>
|
|
{% trans lab='/lab' %}
|
|
If you would like to try the latest experimental I2P projects, visit the <a href = "{{ lab }}">I2P Lab</a>
|
|
{% endtrans -%}-->
|
|
<h3>{{ _('Dependency') }}</h3>
|
|
<p>{% trans java='https://java.com/download/',
|
|
openjdk='http://openjdk.java.net/install/',
|
|
icedtea='http://icedtea.classpath.org/wiki/Main_Page',
|
|
arm8='https://openjdk.java.net/install/',
|
|
ibmsdk7='http://www.ibm.com/developerworks/java/jdk/linux/download.html',
|
|
detectjre='https://java.com/en/download/installed.jsp?detect=jre&try=1' %}
|
|
Java Runtime Version 7 or higher.
|
|
(<a href="{{ java }}">Oracle</a>,
|
|
<a href="{{ openjdk }}">OpenJDK</a>, or
|
|
<a href="{{ icedtea }}">IcedTea</a>
|
|
Java Version 7 or 8 recommended,
|
|
except Raspberry Pi: <a href="{{ arm8 }}">OpenJDK 9 for ARM</a>,
|
|
PowerPC: <a href="{{ ibmsdk7 }}">IBM Java SE 7 or 8</a>)
|
|
<br />
|
|
<a href="{{ detectjre }}">Determine your installed Java version here</a>
|
|
or type <tt>java -version</tt> at your command prompt.
|
|
{% endtrans %}
|
|
{% trans -%}
|
|
Java 9 support is in development and it is not recommended for general use.
|
|
{%- endtrans %}
|
|
</p>
|
|
|
|
|
|
|
|
<h3>{{ _('Release Notes') }}</h3>
|
|
<ul><li>
|
|
<a href="{{ site_url() }}blog/category/release">{{ _('Release Notes') }}</a>
|
|
</li><li>
|
|
<a href="https://raw.githubusercontent.com/i2p/i2p.i2p/master/history.txt">{{ _('Change Log') }}</a>
|
|
</li><li>
|
|
<a href="https://raw.githubusercontent.com/i2p/i2p.i2p/master/debian/changelog">{{ _('Debian Change Log') }}</a>
|
|
</li><li>
|
|
<a href="https://raw.githubusercontent.com/i2p/i2p.android.base/master/CHANGELOG">{{ _('Android Change Log') }}</a>
|
|
</li></ul>
|
|
|
|
|
|
|
|
<h3>{{ _('Clean installs') }}</h3>
|
|
<div class="downloadlist">
|
|
|
|
{% call package('windows') %}
|
|
<p>{% trans -%}
|
|
Download that file and run it.
|
|
{%- endtrans %}</p>
|
|
|
|
<div class="file">
|
|
<a class="default" href="/firefox">{% trans %}I2P Firefox Browser Profile{% endtrans %}</a>
|
|
</div>
|
|
{% endcall %}
|
|
{% call package('mac') %}
|
|
<p>{% trans i2pversion=ver() -%}
|
|
Download that file and double-click it (if that works) or
|
|
type <code>java -jar i2pinstall_{{ i2pversion }}.jar</code> in a terminal to run the
|
|
installer.
|
|
You may be able to right-click and select
|
|
"Open with Java".
|
|
{%- endtrans %}</p>
|
|
|
|
<h3>{% trans %}Command line (headless) install:{% endtrans %}</h3>
|
|
{% trans i2pversion=ver() -%}
|
|
Download the {{ i2pversion }} OSX graphical installer file above and
|
|
run <code>java -jar i2pinstall_{{ i2pversion }}.jar -console</code> from the command line.
|
|
{%- endtrans %}
|
|
{% endcall %}
|
|
|
|
{% call package('macnative') %}
|
|
<p>{% trans i2pversion=ver() -%}
|
|
A drag-and-drop installer that includes a new I2P Launcher utility.
|
|
Beta.
|
|
{%- endtrans %}</p>
|
|
|
|
<p>{% trans -%}
|
|
Double-click on the file, then drag and drop the launcher into your Applications folder.
|
|
{%- endtrans %}</p>
|
|
{% endcall %}
|
|
|
|
{% call package('unix') %}
|
|
<p>{% trans i2pversion=ver() -%}
|
|
Download that file and double-click it (if that works) or
|
|
type <code>java -jar i2pinstall_{{ i2pversion }}.jar</code> in a terminal to run the
|
|
installer.
|
|
On some platforms you may be able to right-click and select
|
|
"Open with Java".
|
|
{%- endtrans %}</p>
|
|
|
|
<h3>{% trans %}Command line (headless) install:{% endtrans %}</h3>
|
|
{% trans i2pversion=ver() -%}
|
|
Download the graphical installer file above and
|
|
run <code>java -jar i2pinstall_{{ i2pversion }}.jar -console</code> from the command line.
|
|
{%- endtrans %}
|
|
{% endcall %}
|
|
|
|
{% call package_outer('deb', 'Debian / Ubuntu', 'images/download/debian-ubuntu.png') %}
|
|
<div class="file">
|
|
<a class="default" href="{{ get_url('downloads_debian') }}">{% trans %}Packages for Debian & Ubuntu are available.{% endtrans %}</a>
|
|
</div>
|
|
{% endcall %}
|
|
|
|
{% call package('android') %}
|
|
<div class="warning">
|
|
{% trans -%}
|
|
Requires Android 4.0 (Ice Cream Sandwich) or higher. If you earlier installed
|
|
I2P, unfortunately this release fixes some IPC issues which will force you to uninstall your current installation before installing this.
|
|
{%- endtrans %}
|
|
{% trans -%}
|
|
512 MB RAM minimum; 1 GB recommended.
|
|
{%- endtrans %}
|
|
{% trans -%}
|
|
The release and dev versions of the I2P APK are not compatible, as they
|
|
are signed by zzz and meeh respectively. Uninstall one before installing
|
|
the other.
|
|
{%- endtrans %}
|
|
</div>
|
|
{% endcall %}
|
|
|
|
{% call package_outer('docker', 'Docker', 'images/download/docker.png') %}
|
|
<div class="meta">
|
|
<div class="hash">
|
|
<code>35cb620d82c6cab8764792720c061379bb8493325d75ad2e376455b44718935</code>
|
|
</div>
|
|
</div>
|
|
<p>{% trans -%}I2P is now available as a Docker package from the Docker hub.
|
|
You may retrieve the image by running the 'docker pull' command.
|
|
{%- endtrans %}
|
|
</p>
|
|
<pre><code>{% trans-%}
|
|
docker pull meeh/i2p.i2p
|
|
{%- endtrans %}
|
|
</pre><code>
|
|
<a href="https://hub.docker.com/r/geti2p/i2p/">Docker Hub</a>
|
|
|
|
{% endcall %}
|
|
|
|
|
|
|
|
|
|
{% call package('source') %}
|
|
<p>{% trans monotoneurl=site_url('get-involved/guides/new-developers'),
|
|
gitrepo='http://'+i2pconv('git.repo.i2p')+'/w/i2p.i2p.git',
|
|
github='https://github.com/i2p/i2p.i2p',
|
|
i2pversion=ver() -%}
|
|
Alternately, you can fetch the source from <a href="{{ monotoneurl }}#getting-the-i2p-code">monotone</a>
|
|
or via Git from <a href="{{ gitrepo }}">git.repo.i2p</a> or <a href="{{ github }}">Github</a>.
|
|
<br />
|
|
Run <code>(tar xjvf i2psource_{{ i2pversion }}.tar.bz2 ; cd i2p-{{ i2pversion }} ; ant pkg)</code> then either
|
|
run the GUI installer or headless install as above.
|
|
{%- endtrans %}</p>
|
|
<p>{% trans monotoneurl=site_url('get-involved/guides/new-developers'),
|
|
github='https://github.com/i2p/i2p.android.base' -%}
|
|
Android source is in <a href="{{ monotoneurl }}#getting-the-i2p-code">monotone</a>
|
|
and on <a href="{{ github }}">Github</a>.
|
|
Android builds require the I2P source.
|
|
See the documentation in the Android source for additional build requirements and instructions.
|
|
{%- endtrans %}</p>
|
|
{% endcall %}
|
|
|
|
</div>
|
|
|
|
{% trans signer=release_signer,
|
|
signingkey=site_url('get-involved/develop/release-signing-key') -%}
|
|
The files are signed by {{ signer }},
|
|
<a href="{{ signingkey }}">whose key is here</a>.
|
|
{%- endtrans %}
|
|
|
|
{% trans signer='zlatinb',
|
|
signingkey=url_for('static', filename='zlatinb.key.crt') -%}
|
|
The Windows installer is signed by {{ signer }},
|
|
<a href="{{ signingkey }}">whose key is here</a>.
|
|
{%- endtrans %}
|
|
|
|
{% trans signer='mikalv (meeh)',
|
|
signingkey=url_for('static', filename='mikalv.key.crt') -%}
|
|
The Mac OS X native installer is signed by {{ signer }} with his Apple Developer ID certificate,
|
|
<a href="{{ signingkey }}">whose key is here</a>.
|
|
{%- endtrans %}
|
|
|
|
|
|
{% include "downloads/post-install.html" %}
|
|
|
|
<h3 id="update">{{ _('Updates from earlier releases:') }}</h3>
|
|
|
|
<p>{% trans -%}
|
|
Both automatic and manual upgrades are available for the release.
|
|
{%- endtrans %}</p>
|
|
|
|
{% call package_outer('auto', _('Automatic updates'), 'images/download/update-auto.png') %}
|
|
<p>{% trans -%}
|
|
If you are running 0.7.5 or later, your router should detect the
|
|
new release. To upgrade simply click the 'Download Update' button on your router console
|
|
when it appears.
|
|
{%- endtrans %}</p>
|
|
<div class="warning">
|
|
<p>{% trans -%}
|
|
Since 0.9.23, some releases are signed by str4d, whose signing key has been in the router
|
|
since 0.9.9. Routers older than 0.9.9 will fail to verify update files signed by str4d,
|
|
and will need to be manually updated using the process below.
|
|
{%- endtrans %}</p>
|
|
</div>
|
|
{% endcall %}
|
|
|
|
{% call package('update-file') %}
|
|
<ol>
|
|
<li>
|
|
{% trans -%}
|
|
Download that file to your I2P
|
|
installation directory and <b>rename as i2pupdate.zip</b>.
|
|
(alternately, you can get the source as above and run "ant updater", then copy the
|
|
resulting i2pupdate.zip to your I2P installation directory). You do
|
|
NOT need to unzip that file.
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans -%}
|
|
Click <a href="http://localhost:7657/configservice.jsp">"Restart"</a>
|
|
{%- endtrans %}
|
|
</li>
|
|
<li>
|
|
{% trans -%}
|
|
Grab a cup of coffee and come back in 11 minutes
|
|
{%- endtrans %}
|
|
</li>
|
|
</ol>
|
|
{% endcall %}
|
|
|
|
{% trans signer=release_signer,
|
|
signingkey=site_url('get-involved/develop/release-signing-key') -%}
|
|
The file is signed by {{ signer }},
|
|
<a href="{{ signingkey }}">whose key is here</a>.
|
|
{%- endtrans %}
|
|
|
|
<h3>{{ _('Previous Releases') }}</h3>
|
|
|
|
{% trans echelon=i2pconv('echelon.i2p') -%}
|
|
Previous releases are available on <a href="http://code.google.com/p/i2p/downloads/list?can=1">Google Code</a>
|
|
and <a href="https://launchpad.net/i2p/trunk">Launchpad</a>
|
|
and within the I2P network on <a href="http://{{ echelon }}/">{{ echelon }}</a>.
|
|
{%- endtrans %}
|
|
|
|
{% endblock %}
|