Skip to content

Commit

Permalink
add/update choco, scoop, winget instructions
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Possenriede <possenriede@gmail.com>
  • Loading branch information
dpprdan committed Sep 5, 2023
1 parent 439bc00 commit 7268178
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 7 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,9 @@ pacman -S gopass
[![Scoop version](https://img.shields.io/scoop/v/gopass)](https://github.com/ScoopInstaller/Main/blob/master/bucket/gopass.json)

```shell
# WinGet
# WinGet#
winget install Git.Git
winget install GnuPG.Gpg4win
winget install gopass.gopass
# Chocolatey
choco install gpg4win
Expand Down
37 changes: 31 additions & 6 deletions docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,28 @@ brew install gnupg2 git
* Download and install [GPG4Win](https://www.gpg4win.org/).
* Download and install [the Windows git installer](https://git-scm.com/download/win).

Alternatively, it can be installed via [chocolatey](https://chocolatey.org/packages/gopass)
Alternatively, these can be installed via [chocolatey](https://chocolatey.org),

* `choco install gopass` (requires admin privileges)
```ps1
choco install git
choco install gpg4win
```

[Scoop](https://scoop.sh),

```ps1
scoop install git
# add Extras bucket
# scoop bucket add extras
scoop install gpg4win
```

or [winget](https://aka.ms/winget-docs).

```ps1
winget install Git.Git
winget install GnuPG.Gpg4win
```

#### OpenBSD

Expand Down Expand Up @@ -203,18 +222,24 @@ pacman -S gopass

**WARNING**: Windows is not yet officially supported. We try to support it in the future. These are steps are only meant to help you setup gopass on Windows so you can provide us with feedback about the current state of our Windows support.

You can install `gopass` by [Chocolatey](https://chocolatey.org/):
You can install `gopass` with [Chocolatey](https://chocolatey.org/packages/gopass),

```bash
```ps1
choco install gopass
```

Or by [Scoop](https://scoop.sh/):
[Scoop](https://scoop.sh/#/apps?q=gopass),

```bash
```ps1
scoop install gopass
```

or winget.

```ps1
winget install gopass.gopass
```

Alternatively, download and install a suitable Windows build from the repository [releases page](https://github.com/gopasspw/gopass/releases).

### Installing from Source
Expand Down

0 comments on commit 7268178

Please sign in to comment.