-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpanel-download.html.template
215 lines (204 loc) · 7.15 KB
/
panel-download.html.template
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
<h2>Latest release: Electrum-##VERSION##</h2>
<a href="https://github.com/spesmilo/electrum/blob/master/RELEASE-NOTES">Release notes</a> -
<a href="https://download.electrum.org">Previous releases</a><br/>
<div style="font-size:small">
Our executables are reproducible, and are signed independently by several builders.<br/>
The current executables have been signed by ##signers_list##.<br/>
</div>
<h3>Sources and Binaries</h3>
<!--
<div style="font-size:small">
Note: All the files can be downloaded via <a href="https://download.electrum.org/Electrum-2.0.torrent">Bittorrent</a>
</div>
-->
<table class="downloads">
<tr>
<td>
<img src="icons/tar-gz.png" width=32/>Python
<span style="font-size:80%">(3.8 and higher)</span>
</td>
<td>
<a href="##link_tgz##">Electrum-##VERSION##.tar.gz</a>
</td>
<td>
<span style="font-size:80%"><a href="##sigs_tgz##">Signatures</a></span>
</td>
</tr>
<tr>
<td>
<img src="icons/os_linux.gif" class="os-linux"/>Linux
</td>
<td>
<a href="##link_appimage##">Appimage</a>
</td>
<td>
<span style="font-size:80%"><a href="##sigs_appimage##">Signatures</a></span>
</td>
</tr>
<tr>
<td rowspan="3">
<img src="icons/os_windows.gif"/>Windows
<span style="font-size:80%">(8.1 and higher)</span>
</td>
<td>
<a href="##link_win##">Standalone Executable</a>
</td>
<td>
<span style="font-size:80%"><a href="##sigs_win##">Signatures</a></span>
</td>
</tr>
<tr>
<td>
<a href="##link_win_setup##">Windows Installer</a>
</td>
<td>
<span style="font-size:80%"><a href="##sigs_win_setup##">Signatures</a></span>
</td>
</tr>
<tr>
<td>
<a href="##link_win_portable##">Portable version</a>
<span style="font-size:80%">(<a href="https://bitcointalk.org/index.php?topic=154451.0">security advice</a>)</span>
</td>
<td>
<span style="font-size:80%"><a href="##sigs_win_portable##">Signatures</a></span>
</td>
</tr>
<tr>
<td>
<img src="icons/os_apple.png"/>macOS
<span style="font-size:80%">(10.13 and higher)</span>
</td>
<td>
<a href="##link_mac##">Executable for macOS</a>
</td>
<td>
<span style="font-size:80%"><a href="##sigs_mac##">Signatures</a></span>
</td>
</tr>
<tr>
<td rowspan="3">
<img src="icons/android_icon.png" width=30/>Android
<span style="font-size:80%">
(6.0 and higher)<br/>
(available on <a href="https://play.google.com/store/apps/details?id=org.electrum.electrum">Google Play</a>)<br/>
(available on <a href="https://f-droid.org/en/packages/org.electrum.electrum/">F-Droid</a>)<br/>
</span>
</td>
<td>
<a href="##link_apk_arm64##">arm 64-bit</a> (arm64-v8a, recommended)
</td>
<td>
<span style="font-size:80%"><a href="##sigs_apk_arm64##">Signatures</a></span>
</td>
</tr>
<tr>
<td>
<a href="##link_apk_armeabi##">arm 32-bit</a> (armeabi-v7a)
</td>
<td>
<span style="font-size:80%"><a href="##sigs_apk_armeabi##">Signatures</a></span>
</td>
</tr>
<tr>
<td>
<a href="##link_apk_x86_64##">x86_64</a>
</td>
<td>
<span style="font-size:80%"><a href="##sigs_apk_x86_64##">Signatures</a></span>
</td>
</tr>
</table>
<h3>Installation from Python sources</h3>
<table class="downloads">
<tr>
<td rowspan="5">
<img src="icons/os_linux.gif"/>Linux
</td>
<td>
Install dependencies:
</td>
<td>
<code>sudo apt-get install python3-pyqt5 libsecp256k1-dev python3-cryptography</code>
</td>
</tr>
<tr>
<td>
Download package:
</td>
<td>
<code>wget ##link_tgz##</code><br/>
</td>
</tr>
<tr>
<td>
Verify signatures:
</td>
<td>
<code>wget ##link_tgz##.asc</code><br/>
<code>gpg --verify Electrum-##VERSION##.tar.gz.asc</code><br/>
</td>
</tr>
<tr>
<td>
Run without installing:
</td>
<td>
<code>tar -xvf Electrum-##VERSION##.tar.gz</code><br/>
<code>python3 Electrum-##VERSION##/run_electrum</code></br>
</td>
</tr>
<tr>
<td>
Install with PIP:
</td>
<td>
<code>sudo apt-get install python3-setuptools python3-pip</code><br/>
<code>python3 -m pip install --user Electrum-##VERSION##.tar.gz</code>
</td>
</tr>
</table>
<h3>How to verify GPG signatures</h3>
<div class="downloads" style="padding:5px">
<p>
GPG signatures are a proof that distributed files have been signed
by the owner of the signing key. For example, if this website was
compromised and the original Electrum files had been replaced,
signature verification would fail, because the attacker would not
be able to create valid signatures. (Note that an attacker would be
able to create valid hashes, this is why we do not publish hashes
of our binaries here, it does not bring any security).
</p>
<p>
In order to be able to verify GPG signatures, you need to import
the public key of the signer. Electrum binaries are signed with
ThomasV's <a href="https://raw.githubusercontent.com/spesmilo/electrum/master/pubkeys/ThomasV.asc">public
key</a>. On Linux, you can import that key using the following
command: <code>gpg --import ThomasV.asc</code>. When you import a
key, you should check its fingerprint using independent sources,
such
as <a href="https://www.youtube.com/watch?v=hjYCXOyDy7Y">here</a>,
or use
the <a href="https://en.wikipedia.org/wiki/Web_of_trust">Web of
Trust</a>.
</p>
</div>
<h3>Notes for Windows users</h3>
<div class="downloads" style="padding:5px">
<p>
Electrum binaries are often flagged by various anti-virus
software. There is nothing we can do about it, so please stop
reporting that to us. Anti-virus software uses heuristics in order
to determine if a program is malware, and that often results in
false positives. If you trust the developers of the project, you
can verify the GPG signature of Electrum binaries, and safely
ignore any anti-virus warnings. If you do not trust the developers
of the project, you should build the binaries yourself, or run the
software from source. Finally, if you are really concerned about
malware, you should not use an operating system that relies on
anti-virus software.
</p>
<p>
Old versions of Windows might need to install the KB2999226 Windows update.
</p>
</div>