Skip to content

Commit e06c041

Browse files
committed
Distinguish windows and linux/macos installations
1 parent b8a6918 commit e06c041

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,22 @@ This API wrapper mainly focuses on the Gists part of the GitHub API, not the ent
2929
- [ ] `DELETE`ing from `/gists/{gist_id}/comments/{comment_id}` to delete a comment of the authenticated user on a Gist
3030

3131
## Installation
32+
### Windows
3233
```sh
33-
pip install gists.py
34+
py -m pip install gists.py
3435
```
3536
or
3637
```sh
37-
pip install git+https://github.com/WitherredAway/gists.py
38+
py -m pip install git+https://github.com/WitherredAway/gists.py
39+
```
40+
### Linux/macOS
41+
```sh
42+
python3 -m pip install gists.py
43+
```
44+
or
45+
```sh
46+
python3 -m pip install git+https://github.com/WitherredAway/gists.py
3847
```
39-
4048
## Usage examples
4149
*This section is a work in progress*
4250

0 commit comments

Comments
 (0)