teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

2.5.2をインストールできました

2018/11/16 08:29

投稿

taro373
taro373

スコア189

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
+ ```