
我在一個運行 CentOS 伺服器和 Perl 5.8.8 的實驗室工作。
我想安裝較新版本的 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
這應該正是你所追求的。