-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
README.md: Update badges and instructions.
- Loading branch information
Showing
1 changed file
with
10 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,25 @@ | ||
# Pimoroni Trackball Breakout | ||
|
||
[![Build Status](https://travis-ci.com/pimoroni/trackball-python.svg?branch=master)](https://travis-ci.com/pimoroni/trackball-python) | ||
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/trackball-python/badge.svg?branch=master)](https://coveralls.io/github/pimoroni/trackball-python?branch=master) | ||
[![Build Status](https://img.shields.io/github/actions/workflow/status/pimoroni/trackball-python/test.yml?branch=main)](https://github.com/pimoroni/trackball-python/actions/workflows/test.yml) | ||
[![Coverage Status](https://coveralls.io/repos/github/pimoroni/trackball-python/badge.svg?branch=main)](https://coveralls.io/github/pimoroni/trackball-python?branch=main) | ||
[![PyPi Package](https://img.shields.io/pypi/v/trackball.svg)](https://pypi.python.org/pypi/trackball) | ||
[![Python Versions](https://img.shields.io/pypi/pyversions/trackball.svg)](https://pypi.python.org/pypi/trackball) | ||
|
||
|
||
# Installing | ||
|
||
Stable library from PyPi: | ||
|
||
* Just run `sudo pip install trackball` | ||
If you're familiar with virtual environments and have one set up, just run `python3 -m pip install trackball` | ||
|
||
Otherwise: | ||
|
||
* `git clone https://github.com/pimoroni/trackball-python` | ||
* `cd trackball-python` | ||
* `./install.sh` | ||
|
||
Latest/development library from GitHub: | ||
|
||
* `git clone https://github.com/pimoroni/trackball-python` | ||
* `cd trackball-python` | ||
* `sudo ./install.sh` | ||
* `./install.sh --unstable` | ||
|