github.com/skabbes/up@v0.2.1/docs/installation.md (about)

     1  ---
     2  title: Installation
     3  ---
     4  
     5  Up can be installed via pre-compiled binaries, head over to the [Releases](https://github.com/apex/up/releases) page, or use this one-liner which will install `up` to `/usr/local/bin` by default.
     6  
     7  ```
     8  $ curl -sfL https://raw.githubusercontent.com/apex/up/master/install.sh | sh
     9  ```
    10  
    11  Or via NPM with:
    12  
    13  ```
    14  $ npm i -g up
    15  ```
    16  
    17  Verify installation with:
    18  
    19  ```
    20  $ up version
    21  ```
    22  
    23  Later when you want to update `up` to the latest version use the following command:
    24  
    25  ```
    26  $ up upgrade
    27  ```
    28  
    29  If you hit permission issues, you may need to run the following, as `up` is installed to `/usr/local/bin/up` by default.
    30  
    31  ```
    32  $ sudo chown -R $(whoami) /usr/local/
    33  ```