Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: changed wget to curl because it is used in the later text / curl follow redirect the get GPG Keys

...

And then download these files:  

Code Block
wgetcurl -O https://dist.apache.org/repos/dist/dev/couchdb/source/VERSION/CANDIDATE/apache-couchdb-VERSION.tar.gz
wgetcurl -O https://dist.apache.org/repos/dist/dev/couchdb/source/VERSION/CANDIDATE/apache-couchdb-VERSION.tar.gz.asc
wgetcurl -O https://dist.apache.org/repos/dist/dev/couchdb/source/VERSION/CANDIDATE/apache-couchdb-VERSION.tar.gz.sha256
wgetcurl -O https://dist.apache.org/repos/dist/dev/couchdb/source/VERSION/CANDIDATE/apache-couchdb-VERSION.tar.gz.sha512

...

The VERSION and CANDIDATE bits will change between releases.  

If you don't have wget installedhave curl installed, you can use curl -O which use wget which should do the same thing.  

...

You will need to import the keys into your local keychain before you can continue: 

Code Block
curl -L https://apache.org/dist/couchdb/KEYS | gpg --import -

...