Skip to content

Commit 4176b56

Browse files
committed
fixing up linux install page
1 parent e247baf commit 4176b56

1 file changed

Lines changed: 5 additions & 13 deletions

File tree

pages/docs/install/install-linux.md

Lines changed: 5 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,10 @@ You can always download the latest tarball release from <a href="{{ site.repo }}
1616
Once downloaded do the following:
1717

1818
```bash
19-
$ tar xvf singularity-*.tar.gz
20-
$ cd singularity
21-
$ ./autogen.sh
19+
$ VERSION=2.2
20+
$ wget https://github.com/singularityware/singularity/releases/download/$VERSION/singularity-$VERSION.tar.gz
21+
$ tar xvf singularity-$VERSION.tar.gz
22+
$ cd singularity-$VERSION
2223
$ ./configure --prefix=/usr/local
2324
$ make
2425
$ sudo make install
@@ -53,7 +54,6 @@ To download the most recent development code, you should use Git and do the foll
5354
```bash
5455
$ git clone {{ site.repo }}.git
5556
$ cd singularity
56-
$ ./autogen.sh
5757
$ ./configure --prefix=/usr/local
5858
$ make
5959
$ sudo make install
@@ -68,16 +68,8 @@ To update your Singularity version, you might want to first delete the executabl
6868
```bash
6969
sudo rm -rf /usr/local/libexec/singularity
7070
```
71-
Then clone the repo fresh, or go into your Singularity repo folder, and pull the latest from master:
71+
And then install using one of the methods above.
7272

73-
```bash
74-
$ cd /path/to/singularity
75-
$ ./autogen.sh
76-
$ ./configure --prefix=/usr/local
77-
$ make clean
78-
$ make
79-
$ sudo make install
80-
```
8173

8274
## Build an RPM from source
8375
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:

0 commit comments

Comments
 (0)