Compiling kallisto from source on a Rock64
- Install automake, autoconf and libhdf5-dev with
sudo apt install automake
, sudo apt install autoconf
and sudo apt install hdf5-dev
. You may have to remove a dpkg lock with sudo rm /var/lib/dpkg/lock
.
- Download, compile and install
cmake
by following the instructions on the cmake website.
- Download the kallisto source from https://pachterlab.github.io/kallisto/download.
- Gunzip and untar the source code file.
- Navigate to the source code directory and type
autoreconf ext/htslib/
.
- Create a new folder called build:
mkdir build
.
- Navigate into the build directory and type
cmake ..
.
- Then type
make
followed by sudo make install
to place kallisto in /usr/local/bin
.