forked from I2P_Developers/i2p.www
96 lines
4.3 KiB
HTML
96 lines
4.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 %}
|
|
<script type="text/javascript" src="/_static/site.js"></script>
|
|
<ul>
|
|
<li><a href="/download_windows">Windows</a>
|
|
<li><a href="/download_osx">Mac OS X</a>
|
|
<li><a href="/download_linux">GNU/Linux / BSD / Solaris</a>
|
|
<li><a href="/download_debian">Ubuntu</a>
|
|
<li><a href="/download_debian">Debian</a>
|
|
<li><a href="/download_android">Android</a>
|
|
<li><a href="/download_docker">Docker</a>
|
|
<li><a href="/download_source">{{ _('Source package') }}</a>
|
|
<li><a href="/download_update">{{ _('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>{{ _('Getting Started') }}</h3>
|
|
<h4>{% trans %}Basic Steps{% endtrans %}</h4>
|
|
<p>{% trans %}For most platforms and systems, setting I2P installed and running will
|
|
consist of up to three steps.{% endtrans %}</p>
|
|
<ul>
|
|
<li><strong>{% trans %}Install Java: {% endtrans %}</strong>{% 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' %} I2P is written in Java and requires
|
|
a Java system to be installed to run. In addition to the I2P download, you need to install Java if you do not have it
|
|
already installed. I2P requires 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.
|
|
Only two platforms do not require Java to be installed before I2P is installed, those platforms are:{% endtrans %}</li>
|
|
<li><strong>{% trans %}Install I2P: {% endtrans %}</strong>{% trans %}Once you have Java installed, you should
|
|
run the I2P installer for your platform. This step applies to all systems.{% endtrans %}</li>
|
|
<li><strong>{% trans %}Install/Configure a Browser(Optional): {% endtrans %}</strong>{% trans %}Finally, you'll need to
|
|
configure applications to use I2P. Many applications can use I2P, but the first application most people configure is a Web
|
|
Browser for browsing I2P sites. Detailed instructions are available on the{% endtrans %}
|
|
<a href="{{ site_url() }}about/browser-config">{% trans %}Browser Page{% endtrans %}</a>.</li>
|
|
</ul><p>
|
|
{% trans -%}
|
|
Windows: Java 8 is recommended. Java 9 or higher may not work.
|
|
{%- 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></ul>
|
|
|
|
|
|
<div class="downloadlist">
|
|
|
|
<h5>{%- trans %}I2P for Windows{%- endtrans %}</h5>
|
|
{% call package('windows') %}
|
|
<p>{% trans -%}
|
|
After installing Java, download the file and double-click to run it.
|
|
{%- endtrans %}</p>
|
|
<h3>{% trans %}Easy-Install Bundle (Beta){% endtrans %}</h3>
|
|
<div class="file">
|
|
<p>{% trans %}It's now possible to install all I2P components using
|
|
a single package(<strong>No Java Required</strong>). To try out the new installer, click here.
|
|
This bundle can also be used to configure a Firefox Profile. It will not
|
|
interfere with an existing I2P installation if one exists.
|
|
{% endtrans %}</p>
|
|
<a class="default" href="/nsis">{% trans %}I2P Easy Install Bundle (Beta){% endtrans %}</a>
|
|
</div>
|
|
<h3>{% trans %}Detailed Install Guide{% endtrans %}</h3>
|
|
<div class="file">
|
|
<p></p>
|
|
<a class="default" href="{{ get_url('downloads_windows') }}">{% trans %}Here is a helpful guide to installing I2P for Windows using a separate Java installation and the classic installer.{% endtrans %}</a>
|
|
</div>
|
|
{% endcall %}
|
|
|
|
{% endblock %}
|