我正在一个运行带有 Perl 5.8.8 的 CentOS 服务器的实验室里工作。
我想安装较新版本的 Perl,仅供个人使用(即不影响其他用户)。我该怎么做?
答案1
佩尔布鲁可以做到这一点;事实上,这是一种常见的安装方法许多本地 Perl 安装,例如用于兼容性测试。
答案2
查阅README
perl 发行版可获得以下信息:
INSTALLATION
============
If you're using a relatively modern operating system and want to
install this version of Perl locally, run the following commands:
./Configure -des -Dprefix=$HOME/localperl
make test
make install
这正是您所追求的。