aboutsummaryrefslogtreecommitdiffstats
path: root/libpathod/templates/download.html
blob: e58437e0793270f9c5a1580ecb8c8cba57dfabda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{% extends "frame.html" %}
{% block body %}  

<section>
    <div class="page-header">
        <h1>
            pip
        </h1>
    </div>

    <p>The easiest way to install pathod is to use pip:</p>

    <pre>pip install pathod</pre>

    <p> This will automatically pull in all the dependencies, and you should be
    good to go.</p>

</section>


<section>
    <div class="page-header">
        <h1>
            github
        </h1>
    </div>

    <p> You can find the project source on GitHub: </p>

    <div style="margin-top: 20px; margin-bottom: 20px">
    <a class="btn btn-primary btn-large" href="https://github.com/cortesi/pathod">github.com/cortesi/pathod</a>
    </div>

    <p>Please also use the <a
    href="https://github.com/cortesi/pathod/issues">github issue tracker</a> to
    report bugs. </p>
</section>


<section>
    <div class="page-header">
        <h1>
            tarball
        </h1>
    </div>

    <div style="margin-top: 20px; margin-bottom: 20px">
    <a class="btn btn-primary btn-large" href="https://github.com/downloads/cortesi/pathod/pathod-{{version}}.tar.gz">pathod-{{version}}.tar.gz</a>
    </div>
</section>


{% endblock %}