Linux安装monocle3报错
ERROR: dependency ‘units’ is not available for package ‘sf’
* removing ‘/usr/local/lib/R/site-library/sf’
ERROR: dependencies ‘sf’, ‘units’ are not available for package ‘spdep’
* removing ‘/usr/local/lib/R/site-library/spdep’
`configure: error: gdal-config not found or not executable.
ERROR: configuration failed for package ‘terra’
See `config.log' for more details
ERROR: configuration failed for package ‘units’
原因:安装unitsR包错误
解决:sudo apt install libudunits2-dev
install.packages("units")
安装monocle3软件包
devtools::install_github('cole-trapnell-lab/monocle3')
出现报错
configure: error: gdal-config not found or not executable.
ERROR: configuration failed for package ‘sf’
安装需要的包
sudo apt-get install libgdal-dev libproj-dev gdal-bin -y