From 3b2544a2cd9ac220e203727077eff48180cdcbcb Mon Sep 17 00:00:00 2001 From: deeplow Date: Mon, 9 Jan 2023 11:33:55 +0000 Subject: [PATCH] Add comment about `poetry install` keyring prompt Running `poetry install` would show a keyring prompt asking the user for a password or to create a new keyring. This should not be needed for a successful install. discussion context: https://github.com/freedomofpress/dangerzone/pull/284#issue-1477773398 --- BUILD.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/BUILD.md b/BUILD.md index 7181e4b..ef58d74 100644 --- a/BUILD.md +++ b/BUILD.md @@ -17,6 +17,8 @@ python3 -m pip install poetry Change to the `dangerzone` folder, and install the poetry dependencies: +> **Note**: due to an issue with [poetry](https://github.com/python-poetry/poetry/issues/1917), if it prompts for your keying, disable the keyring with `keyring --disable` and run the command again. + ``` poetry install ``` @@ -62,6 +64,8 @@ python -m pip install poetry Change to the `dangerzone` folder, and install the poetry dependencies: +> **Note**: due to an issue with [poetry](https://github.com/python-poetry/poetry/issues/1917), if it prompts for your keying, disable the keyring with `keyring --disable` and run the command again. + ``` poetry install ```