日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

安装你自己的perl modules

發(fā)布時間:2023/12/10 编程问答 57 豆豆
生活随笔 收集整理的這篇文章主要介紹了 安装你自己的perl modules 小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.

來源:

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

?

安裝你自己的perl modules。當(dāng)沒有root權(quán)限的時候,需要安裝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`

?

?

轉(zhuǎn)載于:https://www.cnblogs.com/spriteflk/p/5740289.html

總結(jié)

以上是生活随笔為你收集整理的安装你自己的perl modules的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯,歡迎將生活随笔推薦給好友。