Skip to content
This repository has been archived by the owner on Dec 8, 2023. It is now read-only.

Latest commit

 

History

History
25 lines (18 loc) · 515 Bytes

install.rst

File metadata and controls

25 lines (18 loc) · 515 Bytes

Install

From sources

To use py3dtiles from sources:

$ apt install git python3 python3-pip virtualenv libopenblas-base liblas-c3
$ git clone https://github.com/Oslandia/py3dtiles
$ cd py3dtiles
$ virtualenv -p /usr/bin/python3 venv
$ . venv/bin/activate
(venv)$ pip install -e .
(venv)$ python setup.py install

If you wan to run unit tests:

(venv)$ pip install pytest pytest-benchmark
(venv)$ pytest
...