---
title: 编译和安装
description: "1. 使用PuTTY工具，以root用户登录服务器。"
url: https://www.hikunpeng.com/document/detail/zh/kunpenghpcs/hpcindapp/prtg-osc/kunpengcufflinks_02_0010.html
sourcePath: /source/zh/kunpenghpcs/hpcindapp/prtg-osc/kunpengcufflinks_02_0010.html
indexId: e4a0d43dc94a673cc34ead03045399ff99adf1d9b15e12b3af841b423605ed6e71
---
# 编译和安装

#### 操作步骤

1. 使用PuTTY工具，以root用户登录服务器。
2. 执行以下命令进入Cufflinks安装目录。

```
cd
/path/to/CUFFLINKS
```


3. 执行以下命令解压Cufflinks安装包。

```
unzip cufflinks-master.zip
```


4. 执行以下命令进入解压后的目录。

```
cd cufflinks-master
```


5. 执行以下命令生成“configure”文件。

```
./autogen.sh --install
```


6. 执行以下命令进行配置。

```
./configure --with-boost=
/path/to/BOOST
--
with-eigen=
/path/to/EIGEN
/
eigen-3.3.7 --prefix=
/path/to/CUFFLINKS
/
build
```


7. 执行以下命令进行编译安装。

```
make -j 16 install
```


8. 执行以下命令添加Cufflinks环境变量。

```
export PATH=
/path/to/CUFFLINKS
/
build/bin:$PATH
```
