質問編集履歴

1

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

2018/11/16 08:29

投稿

taro373
taro373

スコア189

test CHANGED
File without changes
test CHANGED
@@ -65,3 +65,37 @@
65
65
  "There are many ways to install Singularity but this quick start guide will only cover one."とあるので、この通りにやればできると考えたのですが、
66
66
 
67
67
  うまくできた方がいらしたらどこで間違ってしまったか、教えてください。
68
+
69
+
70
+
71
+
72
+
73
+ https://singularity.lbl.gov/install-linux にある下記の方法ではインストールできました。
74
+
75
+
76
+
77
+
78
+
79
+ ```
80
+
81
+ $ VERSION=2.5.2
82
+
83
+ $ wget https://github.com/singularityware/singularity/releases/download/$VERSION/singularity-$VERSION.tar.gz
84
+
85
+ $ tar xvf singularity-$VERSION.tar.gz
86
+
87
+ $ cd singularity-$VERSION
88
+
89
+ $ ./configure --prefix=/usr/local
90
+
91
+ $ make
92
+
93
+ $ sudo make install
94
+
95
+
96
+
97
+ $ singularity --version
98
+
99
+ 2.5.2-dist
100
+
101
+ ```