Skip to content

Commit 111c161

Browse files
authored
Installation Guide on Linux - missing dependency
Not sure if this is a common error or if this is the best way to describe the fix but thought I would add something to help others. OS: Debian GNU/Linux 9.13 (stretch) Error running first command of Debian install : `sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-key C99B11DEB97541F0` Full error message: ``` Executing: /tmp/apt-key-gpghome.Fuep9VI9UN/gpg.1.sh --keyserver hkp://keyserver$ gpg: failed to start the dirmngr '/usr/bin/dirmngr': No such file or directory gpg: connecting dirmngr at '/tmp/apt-key-gpghome.Fuep9VI9UN/S.dirmngr' failed: $ gpg: keyserver receive failed: No dirmngr ``` Reason: Missing dependency `dirmngr` solution: install `dirmngr` by running: `sudo apt-get install dirmngr`
1 parent e930122 commit 111c161

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

docs/install_linux.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@ sudo apt install gh
2424

2525
**Note**: If you are behind a firewall, the connection to `keyserver.ubuntu.com` might fail. In that case, try running `sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-key C99B11DEB97541F0`.
2626

27+
**Note**: If you get _"gpg: failed to start the dirmngr '/usr/bin/dirmngr': No such file or directory"_ error, try installing the `dirmngr` package. Run `sudo apt-get install dirmngr` and repeat the steps above.
28+
2729
**Note**: most systems will have `apt-add-repository` already. If you get a _command not found_
2830
error, try running `sudo apt install software-properties-common` and trying these steps again.
2931

0 commit comments

Comments
 (0)