From c3f424370d2497131e94f7a45478ca9d93e11768 Mon Sep 17 00:00:00 2001 From: John Lambert Date: Thu, 26 Aug 2021 08:15:35 -0600 Subject: [PATCH] add instructions to install from pypi --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d65c71e5..e9e0a933 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,13 @@ git clone --recursive git@github.com:mihaidusmanu/pycolmap.git ``` ## Unix -COLMAP should be installed as a library before proceeding. Please refer to the official website for installation instructions. PyCOLMAP can be installed using `pip`: +**Preferred:** `pycolmap` is now available for Python 3.7 and Python 3.8 via [pypi](https://pypi.org/project/pycolmap/0.0.1/): +```bash +pip install pycolmap +``` +These wheels were built using John Lambert's wheel-builder [here](https://github.com/johnwlambert/pycolmap-wheels). + +If you instead prefer to build the wheels from source, COLMAP should be installed as a library before proceeding. Please refer to the official website for installation instructions. PyCOLMAP can then be installed using `pip`: ``` pip install ./ ```