forked from colmap/pycolmap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add instructions to install from pypi
- Loading branch information
1 parent
a35b893
commit 78769f3
Showing
1 changed file
with
7 additions
and
1 deletion.
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 |
---|---|---|
|
@@ -10,7 +10,13 @@ git clone --recursive [email protected]: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 ./ | ||
``` | ||
|