https://github.com/python/cpython/commit/223ee6d5d744abb75de2289740dfff1b2cd9cc65 commit: 223ee6d5d744abb75de2289740dfff1b2cd9cc65 branch: main author: Micah Lindstrom <[email protected]> committer: zooba <[email protected]> date: 2026-08-25T14:03:27+01:00 summary:
Documentation on handling a corrupt nuget.config when installing packages from Nuget (GH-154039) files: M Doc/using/windows.rst diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index 40854332af0b24f..3a32c193e3a8fc8 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -1226,6 +1226,10 @@ for the 64-bit version, `www.nuget.org/packages/pythonx86 `www.nuget.org/packages/pythonarm64 <https://www.nuget.org/packages/pythonarm64>`_ for the ARM64 version +Resolve error ``Unable to find package 'python'`` from a misconfigured ``nuget.config`` using:: + + nuget.exe sources add -Name "nuget.org" -source "https://api.nuget.org/v3/index.json" + Free-threaded packages ---------------------- _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
