安裝你自己的perl modules

來源:互聯網
上載者:User

標籤:

來源:

http://www.cnblogs.com/itech/archive/2012/12/17/2822044.html

 

安裝你自己的perl modules。當沒有root許可權的時候,需要安裝perl modules到自己的home目錄下。

來自:http://servers.digitaldaze.com/extensions/perl/modules.html

Installing Perl5 Modules Locally

Normally, the Perl5 module installation procedure includes commands something like these:

% perl5 Makefile.PL
% make
% make test
% make install
% make clean

The first command, perl5 Makefile.PL, directs perl5 to create a makefile for the new module you are installing. When installing a perl5 module locally you must designate the home directory of your perl5 installation on the command line. That information is used by perl5 to create the makefile. Substitute the following command for perl5 Makefile.PL:

% perl5 Makefile.PL PREFIX=/usr/home/USERNAME/usr/local

The value USERNAME above should be replaced with your Virtual Private Server primary user account name. So the complete installation process is:

% perl5 Makefile.PL PREFIX=/usr/home/USERNAME/usr/local
% make
% make test
% make install
% make clean

For older modules it may be necessary to designate several other variables on the command line during the module installation:

% perl5 Makefile.PL PREFIX=/usr/home/USERNAME/usr/local INSTALLPRIVLIB=/usr/home/USERNAME/usr/local/lib/perl5 INSTALLSCRIPT=/usr/home/USERNAME/usr/local/bin INSTALLSITELIB=/usr/home/USERNAME/usr/local/lib/perl5/site_perl INSTALLBIN=/usr/home/USERNAME/usr/local/bin INSTALLMAN1DIR=/usr/home/USERNAME/usr/local/lib/perl5/man INSTALLMAN3DIR=/usr/home/USERNAME/usr/local/lib/perl5/man/man3

To save yourself some typing you can create a file and put these variable assignments above in to a file (FILENAME) something like this:

PREFIX=/usr/home/USERNAME/usr/local INSTALLPRIVLIB=/usr/home/USERNAME/usr/local/lib/perl5 INSTALLSCRIPT=/usr/home/USERNAME/usr/local/bin INSTALLSITELIB=/usr/home/USERNAME/usr/local/lib/perl5/site_perl INSTALLBIN=/usr/home/USERNAME/usr/local/bin INSTALLMAN1DIR=/usr/home/USERNAME/usr/local/lib/perl5/man INSTALLMAN3DIR=/usr/home/USERNAME/usr/local/lib/perl5/man/man3

Then, each time you install a perl5 module you can use the following syntax:

% perl5 Makefile.PL `cat FILENAME`
% make
% make test
% make install
% make clean

You also can have a few different local module installation procedures, for example one for production perl and another for development:

% perl5 Makefile.PL `cat FILENAME.production`

or

% perl5 Makefile.PL `cat FILENAME.development`
 

 

安裝你自己的perl modules

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.