在Ubuntu 12.04LS中安装bioperl

时间:2014-06-02 07:03:48

标签: perl ubuntu installation cpan bioperl

我正在尝试在版本5.20.0的Perl环境中安装Bioperl包, 但我无法进入这些东西。 网站的想法和建议各不相同,对我来说会让人感到不安。 请建议我在Ubuntu 12.04LS中安装Bioperl的协议。

1 个答案:

答案 0 :(得分:0)

来源:http://www.bioperl.org/wiki/Installing_BioPerl_on_Ubuntu_Server

安装和配置基本Ubuntu服务器

安装然后配置。

apt-get clean
apt-get update
apt-get upgrade
apt-get install ssh screen
apt-get clean

使用apt-get

尽可能安装

在/etc/apt/sources.list

中启用Universe和Multiverse
apt-get update
apt-get install \
 lynx unzip zip ncftp gcc libc6-dev make mysql-server apache2 \
 perl libgd-gd2-perl libcgi-session-perl libclass-base-perl libexpat1-dev
apt-get clean

通过apt-get

安装不可用的CPAN和perl模块
cpan -i 'Text::Shellwords'  # choose defaults if first time

安装BioPerl

cd /tmp
wget -N http://bioperl.org/DIST/current_core_unstable.tar.bz2
tar -xjvf current_core_unstable.tar.bz2
cd bioperl-*
perl Build.PL   # choose the defaults
./Build test
./Build install