我正在尝试在5.20.0版的Perl环境中安装Bioperl包,但是我无法进入这些东西。网站的想法和建议各不相同,这会让我感到不安。请给我推荐一下在Ubuntu 12.04LS中安装Bioperl的协议。
发布于 2014-06-02 15:29:25
来源: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/Soures.list中启用宇宙和多重宇宙
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 installhttps://stackoverflow.com/questions/23988945
复制相似问题