From e06c041adbf6ff4c707bb0d3668b2adc77c15c27 Mon Sep 17 00:00:00 2001 From: WitherredAway Date: Sun, 15 May 2022 20:52:07 +0000 Subject: [PATCH] Distinguish windows and linux/macos installations --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8ff3511..f5f694a 100644 --- a/README.md +++ b/README.md @@ -29,14 +29,22 @@ This API wrapper mainly focuses on the Gists part of the GitHub API, not the ent - [ ] `DELETE`ing from `/gists/{gist_id}/comments/{comment_id}` to delete a comment of the authenticated user on a Gist ## Installation +### Windows ```sh -pip install gists.py +py -m pip install gists.py ``` or ```sh -pip install git+https://github.com/WitherredAway/gists.py +py -m pip install git+https://github.com/WitherredAway/gists.py +``` +### Linux/macOS +```sh +python3 -m pip install gists.py +``` +or +```sh +python3 -m pip install git+https://github.com/WitherredAway/gists.py ``` - ## Usage examples *This section is a work in progress*