1. # download ctags
    2. git clone https://github.com/universal-ctags/ctags.git
    3. cd ctags
    4. # install build tools
    5. sudo apt install \
    6. gcc make \
    7. pkg-config autoconf automake \
    8. python3-docutils \
    9. libseccomp-dev \
    10. libjansson-dev \
    11. libyaml-dev \
    12. libxml2-dev
    13. # install
    14. ./autogen.sh
    15. ./configure
    16. make
    17. make install

    链接