Skip to content

Instantly share code, notes, and snippets.

@aprossi
Last active August 26, 2023 08:02
Show Gist options
  • Save aprossi/66b76c21c6cdbbdbe9d17edd6eb18d0b to your computer and use it in GitHub Desktop.
Save aprossi/66b76c21c6cdbbdbe9d17edd6eb18d0b to your computer and use it in GitHub Desktop.

Rtklib install on ubuntu

install git

sudo apt install git

install git, if it complains on ubuntu run before:

sudo apt-get update
sudo apt-get upgrade

install dependencies

sudo apt-get install build-essential automake checkinstall liblapack3 libblas3

(some change from http://tstur.com/2011/10/installing-rtklib.html namely liblapack3gf vs. liblapack3, libblas3gf vs. libblas3)

clone rtklib 2.4.2

git clone https://github.com/tomojitakasu/RTKLIB.git

build

cd RTKLIB/app
sudo bash makeall.sh

build individual binaries

edit makefile with prper bin directory, e.g. /opt/rtklib/bin and make + make install (if /opt/rtklib is user-owned, no sudo needed)

References

@bryantaoli
Copy link

After I do "sudo bash makeall.sh", what should I do next

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment