summaryrefslogtreecommitdiff
path: root/templates/pages/downloads.html
blob: 631009d4f5cade3bb327fec9b96e2a05489cb22b (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 "layout.html" %}
{% load staticfiles %}

{% block content %}
<div class="container">
    <div class="row">
        {% if user.is_authenticated %}
        {% include 'account/sub_nav.html' %}
        {% endif %}
        <div class="span8">
            <h1>Downloads</h1>
            <br><br>
            <table class="table">
                <tbody>
                    <tr>
                        <td>Scilab 5.3.3 for Windows</td>
                        <td><a href="{% static 'scilab/scilab-5.3.3-windows.exe' %}" target="_blank">Download</a></td>
                    </tr>
                    <tr>
                        <td>Scilab 5.3.3 for Linux</td>
                        <td><a href="{% static 'scilab/scilab-5.3.3-linux.tar.gz' %}" target="_blank">Download</a></td>
                    </tr>
                    <tr>
                        <td>SBHS Scilab codes for Windows</td>
                        <td><a href="{% static 'sbhsclient/scilab_codes_windows.zip' %}" target="_blank">Download</a></td>
                    </tr>
                    <tr>
                        <td>SBHS Scilab codes for Linux (32 bit)</td>
                        <td><a href="{% static 'sbhsclient/scilab_codes_linux_32.zip' %}" target="_blank">Download</a></td>
                    </tr>
                    <tr>
                        <td>SBHS Scilab codes for Linux (64 bit)</td>
                        <td><a href="{% static 'sbhsclient/scilab_codes_linux_64.zip' %}" target="_blank">Download</a></td>
                    </tr>
                    <tr>
                        <td>SBHS Scilab codes for Local experiments</td>
                        <td><a href="{% static 'sbhsclient/scilab_codes_local.zip' %}" target="_blank">Download</a></td>
                    </tr>
                    <tr>
                        <td>SBHS Scilab codes for Data Analysis</td>
                        <td><a href="{% static 'sbhsclient/scilab_codes_analysis.zip' %}" target="_blank">Download</a></td>
                    </tr>
                    <tr><td></td><td></td></tr>
                </tbody>
            </table>
            <br><br>
            <div class="alert alert-info">
                For older versions of linux (For example, Ubuntu <= 11.10), a new version of package <b>libc6</b> (>= 2.15) is required. The package is available from Ubuntu archives on <a href="http://archive.ubuntu.com/ubuntu/pool/main/e/eglibc/libc6_2.17-0ubuntu5_i386.deb" target="_blank" style="color: yellow">this link</a>.
            </div>
        </div>
    </div>
</div>
{% endblock %}