-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall.html
148 lines (123 loc) · 5.56 KB
/
install.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DOCTYPE HTML>
<!--
Arcana by HTML5 UP
html5up.net | @n33co
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-->
<html>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-76450307-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-76450307-1');
</script>
<title>Installing glue</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" href="favicon.ico">
<!--[if lte IE 8]><script src="assets/js/ie/html5shiv.js"></script><![endif]-->
<link rel="stylesheet" href="assets/css/main.css" />
<!--[if lte IE 8]><link rel="stylesheet" href="assets/css/ie8.css" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="assets/css/ie9.css" /><![endif]-->
</head>
<body>
<div id="page-wrapper">
<!-- Header -->
<div id="header">
<!-- Logo -->
<h1><a href="index.html" id="logo">glue:<em> multi-dimensional linked-data exploration</em></a></h1>
<!-- Nav -->
<nav id="nav">
<ul>
<li><a href="index.html">Home</a></li>
<li class="current"><a href="install.html">Install</a></li>
<li><a href="http://docs.glueviz.org" target="_blank">Documentation</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="get_involved.html">Get involved</a></li>
<li><a href="plugins.html">Functionality</a></li>
<li><a href="https://www.gluesolutions.io/glue-con" target="_blank">glue-con events</a></li>
<li><a href="https://www.gluesolutions.io" target="_blank">Consulting services</a></li>
</ul>
</nav>
</div>
<!-- Main -->
<section class="wrapper style1">
<div class="container">
<div id="content">
<!-- Content -->
<article>
<header>
<h2>Installing glue</h2>
</header>
<h3>Standalone applications</h3>
<p class='nomargin'>On MacOS X and Windows, the easiest way to get set up with glue is to download and install
standalone applications that include everything you need to get started:<br><br>
<div align="center">
<a href="https://glueviz.s3.amazonaws.com/installers/2023.06.4/glue%202023.06.4.dmg"><b>Download glue for MacOS X (Intel processors)</b></a><br><br>
<a href="https://glueviz.s3.amazonaws.com/installers/2024.03.1/glue%202024.03.1.dmg"><b>Download glue for MacOS X (Apple silicon)</b></a><br><br>
<a href="https://glueviz.s3.amazonaws.com/installers/2024.03.1/glue%202024.03.1.exe"><b>Download glue for Windows</b></a><br><br>
</div>
You can find more
details at the <a href="http://docs.glueviz.org/en/stable/installation/standalone.html">following page</a>.
The main downside of this installation method is that you will not be able to install additional glue plugins,
but if you just want to try out glue or if the default functionality available in the applications is enough for you,
then it is by far the easiest.
</p>
<h3>As a Python package</h3>
<p>The other main way to install glue is into an
existing Python installation, using e.g., <a
href="https://pip.pypa.io/en/stable/">pip</a> or
<a href="https://docs.conda.io/en/latest/">conda</a>, or on some Linux distributions by using the
built-in package manager. For more information on installation options, please take a look at the
<a href="http://glueviz.readthedocs.io/en/stable/installation/installation.html">
Installing and running glue</a> section of the documentation.
</p>
<h3>Starting up glue</h3>
<p>
If you have installed the standalone
application, double click on the application
to open it. Otherwise, if you have installed
glue as a Python package, to start up glue
from the command-line/terminal, type:
</p>
<p>
<code>
glue
</code>
</p>
<p>
on the command-line. If you run into any issues, you can
<a href="https://github.com/glue-viz/glue/issues/new">open
a ticket</a> in our GitHub repository or email us at <a
href="mailto:[email protected]">[email protected]</a>.
</p>
</article>
</div>
</div>
</section>
<!-- Footer -->
<div id="footer">
<!-- Icons -->
<ul class="icons">
<li><a href="https://mobile.twitter.com/glueviz" class="icon fa-twitter"><span class="label">Twitter</span></a></li>
<li><a href="https://github.com/glue-viz" class="icon fa-github"><span class="label">GitHub</span></a></li>
</ul>
<!-- Copyright -->
<div class="copyright">
<ul class="menu">
<li>© glue developers. All rights reserved</li><li>Design: <a href="http://html5up.net">HTML5 UP</a></li>
</ul>
</div>
</div>
</div>
<!-- Scripts -->
<script src="assets/js/jquery.min.js"></script>
<script src="assets/js/jquery.dropotron.min.js"></script>
<script src="assets/js/skel.min.js"></script>
<script src="assets/js/util.js"></script>
<!--[if lte IE 8]><script src="assets/js/ie/respond.min.js"></script><![endif]-->
<script src="assets/js/main.js"></script>
</body>
</html>