質問編集履歴
1
2.5.2をインストールできました
title
CHANGED
File without changes
|
body
CHANGED
@@ -31,4 +31,21 @@
|
|
31
31
|
```
|
32
32
|
|
33
33
|
"There are many ways to install Singularity but this quick start guide will only cover one."とあるので、この通りにやればできると考えたのですが、
|
34
|
-
うまくできた方がいらしたらどこで間違ってしまったか、教えてください。
|
34
|
+
うまくできた方がいらしたらどこで間違ってしまったか、教えてください。
|
35
|
+
|
36
|
+
|
37
|
+
https://singularity.lbl.gov/install-linux にある下記の方法ではインストールできました。
|
38
|
+
|
39
|
+
|
40
|
+
```
|
41
|
+
$ VERSION=2.5.2
|
42
|
+
$ wget https://github.com/singularityware/singularity/releases/download/$VERSION/singularity-$VERSION.tar.gz
|
43
|
+
$ tar xvf singularity-$VERSION.tar.gz
|
44
|
+
$ cd singularity-$VERSION
|
45
|
+
$ ./configure --prefix=/usr/local
|
46
|
+
$ make
|
47
|
+
$ sudo make install
|
48
|
+
|
49
|
+
$ singularity --version
|
50
|
+
2.5.2-dist
|
51
|
+
```
|