下载地址
GeographicLib: Installing GeographicLib
我们是ubuntu20.04 ,所以下载第一个 GeographicLib-2.3.tar.gz
接着跟着官方步骤安装,会出错!!!!马的
官方错误示例:
tar xfpz GeographicLib-2.3.tar.gz
cd GeographicLib-2.3
mkdir BUILD
cd BUILD
../configure
../configure --prefix=/tmp/geographic //这步写了就g
make
make install
官方网页:
正确的如下:
tar xfpz GeographicLib-2.3.tar.gz
cd GeographicLib-2.3
mkdir BUILD
cd BUILD
../configure
cmake .. -DCMAKE_INSTALL_PREFIX=/usr/local
sudo make install
原因请参考我的另一篇blog。
【包编译】库文件安装错位置怎么办-CSDN博客