From f7beccdb8ca96a4d9ab2c003fca54ebb0347c8b9 Mon Sep 17 00:00:00 2001 From: Samuel Krieg Date: Tue, 15 Jun 2021 15:47:08 +0200 Subject: [PATCH] add command to pip install direct from git Adds a command to pip install the packet directly without having to make a local clone first. --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index bd065ab..e9eff51 100644 --- a/README.md +++ b/README.md @@ -18,9 +18,14 @@ sudo python setup.py install or with pip (recommended) +- local ``` pip install -e /path/to/repository/python ``` +- latest version from git +``` +pip install -e git+https://github.com/openskynetwork/opensky-api.git#"egg=opensky-api&subdirectory=python" +``` ### Usage