perl中一些模块的ubuntu中依赖包

时间:2024-11-05 08:33:50

GD

先更新系统中的依赖包:

sudo apt-get update
sudo apt-get upgrade

进入

cpan> install GD

会提示没有安装libgd模块。

所以,先需要安装libgd模块:

circos -modules list.modules | grep -v "ok" | perl -ane 'print $F[1]," "
atp-get update
apt-get install libgd2-xpm-dev
#如果找不到,就直接用通配符
apt-get install libgd2*