You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/html/user_guide.rst
+16Lines changed: 16 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -791,3 +791,19 @@ of ability. Some examples that you could consider include:
791
791
792
792
* ``distlib`` - Packaging and distribution utilities (including functions for
793
793
interacting with PyPI).
794
+
795
+
796
+
.. _`Disable Keyring`:
797
+
798
+
(Optional) Disable Keyring
799
+
***************************
800
+
801
+
Keyring in certain cases can prevent the installing of certain packages and modules due to authentication errors. In such cases disabling the keyring is recommended.Keyring can be manually uninstalled but doing so may invalidate other packages that depends on Keyring.
802
+
803
+
How to disable the keyring:
804
+
- Set the password as null to preferred keyring for the relevant URL and username.
805
+
- If the keyring version is 15.1.0 keyring can be disabled via command line using::
806
+
807
+
keyring --disable
808
+
809
+
- Set environment variable ``PYTHON_KEYRING_BACKEND`` to ``keyring.backends.null.Keyring`` in config file
0 commit comments