From 0b90b64a24d52e4613a06fd81866f68142618a30 Mon Sep 17 00:00:00 2001 From: Daniel McCoy Stephenson Date: Sun, 2 Aug 2026 02:45:45 -0600 Subject: [PATCH] docs: clarify graphik is not yet published to PyPI The README's Installation section presented `pip install graphik` as already working, but the package has never been published (confirmed via `pip download graphik`, which finds no matching distribution). Point new users at a git-install until the first release is tagged. Co-Authored-By: Claude Sonnet 5 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index b2a969b..ccb2a5f 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,13 @@ This library assists developers with graphics programming. ## Installation +`graphik` has not been published to PyPI yet (see [RELEASING.md](RELEASING.md) +for the release process), so `pip install graphik` will not resolve until the +first release is tagged. Until then, install directly from this repository: +```bash +pip install git+https://github.com/Stephenson-Software/graphik.git +``` +Once a release is published, it will be installable with: ```bash pip install graphik ```