Skip to content

Commit

Permalink
Distinguish windows and linux/macos installations
Browse files Browse the repository at this point in the history
  • Loading branch information
WitherredAway committed May 15, 2022
1 parent b8a6918 commit e06c041
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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*

Expand Down

1 comment on commit e06c041

@WitherredAway
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Crap i forgot to mention in the commit description, but thanks Var for suggesting this!

Please sign in to comment.