You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
### Option 2: Download the latest development code
29
29
To download the most recent development code, you should use Git and do the following:
30
30
31
31
```bash
32
-
$ git clone {{ site.repo }}.git
33
-
$ cd singularity
34
-
$ ./configure --prefix=/usr/local
35
-
$ make
36
-
$ sudo make install
32
+
git clone {{ site.repo }}.git
33
+
cd singularity
34
+
./configure --prefix=/usr/local
35
+
make
36
+
sudo make install
37
37
```
38
38
39
39
note: The 'make install' is required to be run as root to get a properly installed Singularity implementation. If you do not run it as root, you will only be able to launch Singularity as root due to permission limitations.
@@ -52,18 +52,18 @@ And then install using one of the methods above.
52
52
Like the above, you can build an RPM of Singularity so it can be more easily managed, upgraded and removed. From the base Singularity source directory do the following:
Note: if you want to have the RPM install the files to an alternative location, you should define the environment variable 'PREFIX' to suit your needs, and use the following command to build:
0 commit comments