Documentation of segment-lidar
GitHubGeomatics Unit
  • Getting started
  • Installation
  • TUTORIAL
    • Prerequisites
    • Sample data
    • Basic usage
    • Configuration
  • INFORMATION
    • API
    • Citation
    • License
Powered by GitBook
On this page
  • Step 1: Create virtual environment
  • Step 2: Install segment-lidar

Was this helpful?

Installation

segment-lidar v0.1.5

PreviousGetting startedNextPrerequisites

Last updated 1 year ago

Was this helpful?

This guide describes the steps to install segment-lidar using or from source.

Step 1: Create virtual environment

Before installing segment-lidar, you need to create an environment by running the following commands:

conda create -n samlidar python=3.9
conda activate samlidar

This command will create a new Conda environment named samlidar. We recommend using Python 3.9, but feel free to test with other versions.

Please note that using a Conda environment is not mandatory, but it is highly recommended. Alternatively, you can use .

Step 2: Install segment-lidar

You can easily install segment-lidar from using the following command:

pip install segment-lidar

Or, you can install it from source:

git clone https://github.com/Yarroudh/segment-lidar
cd segment-lidar
python setup.py install

To make sure that segment-lidar is installed correctly, you can run the following command:

python -c "import segment_lidar; print(segment_lidar.__version__)"

If the installation is successful, you should see the version that you have installed.

PyPI
virtualenv
PyPI