一、 cmake 安装
进入https://cmake.org/download/网站,找到最新版本下载,下载Binary Distribution版本。
解压后进入.bashrc,将路径加入环境变量。source ~/.bashrc
输入cmake --version 检查是否安装成功。
二、racon安装。
只能用git clone --recursive 下载,直接下载解压的安装报错。
由于服务器不能链接github网站,所以先本地git clone --recursive 下载,再 tar -zcvf racon.tar.gz racon/ 压缩后上传。
git clone --recursive https://github.com/lbcb-sci/racon.git racon
cd racon
mkdir build
cd build
cmake -DCMAKE_BUILD_TYPE=Release ..
make
racon 位于racon/build/bin 下,将路径加入将路径加入环境变量。
source ~/.bashrc
参考:
https://blog.csdn.net/wteruiycbqqvwt/article/details/90812498
https://github.com/isovic/racon
网友评论