Built from source
Setting Up Go
wget -c https://golang.org/dl/go1.20.7.linux-amd64.tar.gz -O - \ | sudo tar -xz -C /usr/localecho 'export PATH=$PATH:/usr/local/go/bin:$(/usr/local/go/bin/go env GOPATH)/bin' \ >> ~/.bashrc && source ~/.bashrc
Installing the Latest Release of Singularity
go install github.com/data-preservation-programs/singularity@latestTrying Out Unreleased Features
git clone https://github.com/data-preservation-programs/singularity.gitcd singularitygo build -o singularity . cp singularity $GOPATH/bin
Last updated
Was this helpful?