github.com/golang/dep@v0.5.4/docs/uninstalling.md (about)

     1  ---
     2  title: Uninstalling Dep
     3  ---
     4  
     5  ## Uninstalling
     6  
     7  To uninstall `dep` itself, follow these instructions, depending on how you installed `dep` originally.
     8  
     9  ### If you installed `dep` by executing the `install.sh` script via curl
    10  
    11  If you installed `dep` using the `install.sh` script, it is safe to simply delete the installed binary file.
    12  
    13  On Linux and MacOS, the `install.sh` script installs a pre-compiled binary to `$GOPATH/bin/dep`. It is safe to simply `rm` the installed `$GOPATH/bin/dep` file:
    14  
    15  ```sh
    16  $ rm $GOPATH/bin/dep
    17  ```
    18  
    19  On Windows, the `install.sh` script installs a pre-compiled binary to `$GOPATH/bin/dep.exe`. It is safe to simply delete this file to uninstall `dep`.
    20  
    21  ### If you installed `dep` using Homebrew on MacOS
    22  
    23  If you installed `dep` using Homebrew on MacOS, uninstall `dep` also using Homebrew:
    24  
    25  ```sh
    26  $ brew uninstall dep
    27  ```
    28  
    29  ### If you installed `dep` using `pacman` on Arch Linux
    30  
    31  If you installed `dep` using `pacman` on Arch Linux, uninstall `dep` like so:
    32  
    33  ```sh
    34  $ pacman -R dep
    35  ```