How to solve Error installing package lidR in R?

465 Views Asked by At

I am using amazon sagemaker notebook instance. And i am trying to install lidR package into R notebook but i got following errors. How can i. Solve it?

Code;

install.packages("lidR")

Error;

installing the dependencies ‘units’, ‘lwgeom’, ‘raster’, ‘sf’, ‘stars’, ‘terra’
    
    
    Warning message in install.packages("lidR"):
    “installation of package ‘units’ had non-zero exit status”
    Warning message in install.packages("lidR"):
    “installation of package ‘terra’ had non-zero exit status”
    Warning message in install.packages("lidR"):
    “installation of package ‘raster’ had non-zero exit status”
    Warning message in install.packages("lidR"):
    “installation of package ‘sf’ had non-zero exit status”
    Warning message in install.packages("lidR"):
    “installation of package ‘lwgeom’ had non-zero exit status”
    Warning message in install.packages("lidR"):
    “installation of package ‘stars’ had non-zero exit status”
    Warning message in install.packages("lidR"):
    “installation of package ‘lidR’ had non-zero exit status”
    Updating HTML index of packages in '.Library'
    
    Making 'packages.html' ...
     done
1

There are 1 best solutions below

0
On

Use conda to install the package

Open a terminal on your JupyterLab instance and run the following commands:

conda init bash
source ~/.bashrc
conda activate R
conda install -c conda-forge r-lidr

You should be able to library(lidR) on your notebook after that (restart the R kernel if needed)