Updated python installation instructions#661
Merged
aaronpowell merged 1 commit intogithub:mainfrom Feb 3, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates Python installation documentation to use the correct PyPI package name (github-copilot-sdk) instead of copilot-sdk, ensuring users can successfully install the GitHub Copilot SDK for Python.
Changes:
- Updated
pip installcommand in the PR visualization cookbook example. - Updated pip/Poetry/uv installation commands in the Copilot SDK Python instructions.
Reviewed changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| instructions/copilot-sdk-python.instructions.md | Updates Python SDK installation commands to github-copilot-sdk. |
| cookbook/copilot-sdk/python/pr-visualization.md | Updates prerequisite install command to github-copilot-sdk. |
| @@ -18,11 +18,11 @@ name: "GitHub Copilot SDK Python Instructions" | |||
| Always install via pip: | |||
There was a problem hiding this comment.
The text "Always install via pip:" is a bit misleading/contradictory given the same block immediately lists Poetry and uv alternatives. Consider rewording to something like "Install with pip (or Poetry/uv)" to avoid confusing readers about the recommended install method.
Suggested change
| Always install via pip: | |
| Install with pip (or Poetry/uv): |
aaronpowell
approved these changes
Feb 3, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull Request Checklist
npm run buildand verified thatREADME.mdis up to date.bash scripts/fix-line-endings.shto normalize line endings to LF.Description
Updated the Python package installation instructions from
copilot-sdktogithub-copilot-sdkto reflect the correct package name on PyPI.This change updates:
The correct package name ensures users can successfully install the GitHub Copilot SDK for Python using pip, poetry, or uv.
Type of Contribution
Additional Notes
This is a documentation fix to ensure developers can properly install the GitHub Copilot SDK for Python. The package name on PyPI is
github-copilot-sdk, notcopilot-sdk.By submitting this pull request, I confirm that my contribution abides by the Code of Conduct and will be licensed under the MIT License.