-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (69 loc) · 3.22 KB
/
index.html
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
---
---
{% include header.html %}
<div class="jumbotron jumbotron-fluid text-center" id="startbanner">
<div class="container">
<h1 class="display-2 font-weight-normal">KERN</h1>
<p class="lead font-weight-normal">KERN is an annually released set of radio astronomical software packages.
It should contain most of the standard tools that a radio astronomer needs to work with radio telescope
data. The goal of KERN is to save time and prevent frustration in setting up of scientific pipelines and to
assist in achieving scientific reproducibility.</p>
<a class="btn btn-outline-light" href="/installation/">Installation guide</a>
</div>
</div>
<div class="container-fluid">
<div class="row justify-content-md-center">
<div class="col-12 col-sm-12 col-md-12 col-lg-4 col-xl-5 bg-light border border-white">
<h3 class="page-title"><i class="fas fa-arrow-alt-circle-down fa-lg"></i> Quick start</h3>
<p>To quickly get started using KERN run the following command on a Ubuntu 22.04 system:</p>
<figure class="code"><pre><code>
$ sudo apt-get install software-properties-common
$ sudo add-apt-repository -s ppa:kernsuite/kern-9
$ sudo apt-add-repository multiverse
$ sudo apt-add-repository restricted
$ sudo apt-get update</code></pre>
</figure>
<p>Now you are ready to install some packages, for example python3-casacore:</p>
<figure class="code">
<pre><code>
$ sudo apt-get install python3-casacore
</code></pre>
</figure>
<hr class="half-rule">
If you use KERN in your research please don't forget to cite us:
<figure class="code"><pre><code>
@article{molenaar2018kern,
title={KERN},
author={Molenaar, Gijs and Smirnov, Oleg},
journal={Astronomy and Computing},
year={2018},
publisher={Elsevier}
}
</code></pre>
</figure>
<hr class="half-rule">
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-4 col-xl-3 bg-light border border-white">
<h3 class="page-title"><i class="far fa-thumbs-up fa-lg"></i> Sponsors</h3>
<p>KERN development is supported by</p>
<div class="text-center" style="margin-top: 50px">
<p><img src="/images/sarao.jpg" width="250px"></p>
</div>
<div class="text-center" style="margin-top: 50px">
<p><img src="/images/astron.png" width="250px"></p>
</div>
</div>
<div class="col-12 col-sm-12 col-md-6 col-lg-4 col-xl-3 bg-light border border-white">
<h3 class="page-title"><i class="fab fa-github fa-lg"></i> Reporting issues</h3>
Does a package misbehave? Is it not working as you expected? are you missing a radio astronomical package?
Open an issue on our issue tracker!
<hr class="half-rule">
<div class="text-center">
<a class="btn btn-outline-secondary" href="http://github.com/kernsuite/packaging/issues/">Go to the
issue
tracker</a>
</div>
</div>
</div>
</div>
{% include footer.html %}