perl學習筆記--搭建開發環境

wangyy發表於2014-06-13

windows下perl開發環境搭建

perl下載地址:http://www.activestate.com/developer-tools

 各個外掛的安裝方法:(通過代理上網的方法)

方法一:padwalker的安裝步驟 

1. padwalker下載地址: http://www.bribes.org/perl/ppm/ padwalker
2. 解壓下載的檔案

4. 拷貝 blib/lib/PadWalker.pm 到 Perl/lib(你的安裝路徑)
5. 拷貝 blib/arch/auto/PadWalker 到 Perl/lib/auto
 

方法二:unicode-map、Mail-Sendmail 等外掛的安裝方法:

以管理員的方式執行cmd

設定代理 ,執行命令:set  HTTP_proxy=http://xxxxxx

然後執行命令 :ppm install Mail-Sendmail

命令執行完畢,則安裝就成功了。

如果提示ppm install failed: 407 Proxy Authentication Required,可以嘗試換一下代理路徑

 

配置CGI

 DocumentRoot "C:/apache/httpd-2.2-x64/htdocs/www"

 ScriptAlias /www/ "C:/apache/httpd-2.2-x64/htdocs/www"

<Directory "C:/apache/httpd-2.2-x64/htdocs/www">
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
</Directory>

 

 

http://www.cnblogs.com/A-Song/archive/2012/02/10/how-to-excute-perl-program-in-eclipse.html

 

相關文章