h**p 发帖数: 14 | 1 Hi, I have a simple code I got from CPAN page.
#!/opt/perl-5.8.8/bin/perl -w
use utf8;
use Text::Unidecode;
print unidecode(
"\x{5317}\x{4EB0}\n"
);
When I run it, I got error message:
"Can't locate Text/Unidecode.pm in @INC (@INC contains: /usr/lib/perl5/site_
perl /opt/perl-5.8.8/lib/5.8.8/x86_64-linux /...."
What's wrong here? The CPAN page said this module works with perl 5.0
Thanks for help!! |
|
b****e 发帖数: 1275 | 2 or is this april fool's joke?
http://www.perl.com/CPAN-local/README.html
all perl references have been changed to java, and cpan changed to cjan.. but
the links themselves still point ot perl sites |
|
x*****i 发帖数: 253 | 3 not hacked.. but Sun provided machines to host CPAN.. and soon will offically
take over Valueclick's role and re-architecting the whole module repository..
cpan will be then part of cjan.. more scary thing is: Perl will _probably_
be no longer GPL'ed.. but a product from Sun! |
|
i**********r 发帖数: 70 | 4 suppose user is xyz:
macbook-air:~ xyz$ ls -ld /Users/xyz
drwxr-xr-x+ 37 xyz staff 1258 May 29 23:45 /Users/xyz
macbook-air:~ xyz$ ls -ld /Users/xyz/.
drwxr-xr-x+ 37 xyz staff 1258 May 29 23:45 /Users/xyz/.
Here is the problem:
macbook-air:~ xyz$ sudo mkdir .cpan
Password:
mkdir: .cpan: Operation not permitted
macbook-air:~ xyz$ sudo cpan
...
CPAN build and cache directory? [/Users/xyz/.cpan]
Couldn't create directory /Users/xyz/.cpan.
Please retry.
Anyone can help ?
Thanks! |
|
e****e 发帖数: 3450 | 5 我按这个readme来的
Software Requirements
=====================
1. GCC is required to compile most tools.
2. FASTA-Clipping-Histogram tool requires Perl, the "PerlIO::gzip",
"GD::Graph::bars" modules.
Installing the perl modules can be accomplised by running:
$ sudo cpan 'PerlIO::gzip'
$ sudo cpan 'GD::Graph::bars'
3. FASTX-Barcode-Splitter requires the GNU Sed program.
4. FASTQ-Quality-Boxplot and FASTQ-Nucleotides-Distribution requires the
'gnuplot' program.
Installation
===== |
|
|
|
d**3 发帖数: 12 | 8 握个手
不知道为什么iphone没发出来,重新写一下,如有重复请忽略
说perl过时了有点不了解perl
perl的学习门槛要比php高,看看外面书店里一堆php的书,而perl的相对来说就要少的多
perl的强大在于其有一个强大的模块库cpan,很多你能想到的东西都有人帮你做好了,
拿来就可以直接用。
而对于web开发,perl的framwork Catalyst也不比其他差,而且其扩扎性也很好。另外
perl可以直接用来写apache handler。
对于广大的租借虚拟主机服务的小网站来说,perl可能不合适,因为很多不支持以mod_
perl来跑,太占内存。因为所有要用到的东西,在apache启动的时候就load进内存,从
而节省了后面访问时compile的时间,而php是每次访问时compile需要的东西,相对来说
就比较轻量。
如有错误,还请指出。 |
|
d**3 发帖数: 12 | 9 1、现代web框架基本上都是mvc,说perl print完全是搞笑
2、perl 的优势在cpan
3、说到performance,现实中,perl和php的差别基本可以忽略,关键的部分可能用c/c
++优化
4、决定部分在于架构而不是语言,一般瓶颈都在数据库
server
html |
|
J*******i 发帖数: 2162 | 10 PerlYuYan语言是一个能令人使用中文文言文开发程式 Perl 程式的 Perl 模块,由唐
凤于2002年一月发表。它是中文编程语言的尝试。作者利用中文的特质,将许多指令改
成以一个中国汉字来表示,因而造成了文言语法的感觉。
看看下面的这段代码,相当的文言文啊。有兴趣可以去CPAN上下载回来玩玩。
#!/usr/local/bin/perl
use Lingua::Sinica::PerlYuYan;
用警兮用嚴。
印道
一至一
哉兮
印編曰雜申雜申矣
又纖曰龍鼠矣
又曰一矣
亂曰
國無人莫我知兮 又何懷乎故都
既莫足與為美政兮 吾將從彭咸之所居
还有下面这个五言。
# The Sieve of Eratosthenes - 埃拉托斯芬篩法
use Lingua::Sinica::PerlYuYan;
用籌兮用嚴 井涸兮無礙。
印曰最高矣 又道數然哉。
截起吾純風 賦小入大合。
習予吾陣地 並二至純風。
當起段賦取 加陣地合始。
陣地賦篩始 繫繫此雜段。
終陣地兮印 正道次標哉。
輸空接段點 列終註泰來。
[发表自未名空间手机版 - m.mit... 阅读全帖 |
|
t**n 发帖数: 272 | 11 现在找工作要求perl?
神奇啊...建议骆驼书,然后自己写些程序,或者上cpan.org找几个别人做的包来研究研究 |
|
b***m 发帖数: 5987 | 12 其实我现在最喜欢的是Perl,用着太爽了,功能强大但是语法简单,CPAN里面五花八门
的辅助支持模块多到不行,设计Perl的人真是太天才了。 |
|
|
m***u 发帖数: 114 | 14 多谢, 原来是LWP::Protocol::https没有装。 ubuntu和cygwin里都是一样的原因。
ubuntu装了以后运行就没问题了,多谢。 cygwin装LWP::Protocol::https用cpan
没搞定,不知道要装啥package.
Ubuntu下好使就好了, 扫号利器呀, 多谢。 |
|
|
e****e 发帖数: 3450 | 16 一些perl module要加装,用sudo cpan 'PerlIO::gzip' 总不成 |
|
w*****e 发帖数: 721 | 17 programming Perl.
cpan.org |
|
|
|
x*****i 发帖数: 253 | 20 It will uninterest you after you know its backend:
http://www.hypothetic.org/docs/msn/general/overview.php
The site provides a lot other useful resources of msgner
protocols..
Mine is written in Perl.. no gui.. only used to have fun
with friends.. I don't know if you really want it after you
learn the protocol and find out many implementations in
java.. python.. c++.. vb provided in the site:)
anyways.. im planning to upload it soon to CPAN... |
|
x******0 发帖数: 1490 | 21 用过perl的同学们都知道,cpan上有很多的perl module,相当于C里面的class,perl只
要直接调用这些module就可以完成相对复杂的工作。
我的问题是PHP里是否也有类似现成的模块,用户只要直接使用就行了?
谢谢 |
|
o*********e 发帖数: 7 | 22 我使用英文版的windows。请问如何用Perl script处理中文文件?需从CPAN上下载什么
modules和字库吗?有没有简单的example script可以看一看?另外,什么text editor
可以保存utf, unicode, 以便用来写中文Perl script?
再一问题是,我的计算机是64bits 的。我只找到32 bits 的nmake.ext。哪里可找到64
bit 的? |
|
r*****3 发帖数: 143 | 23 中文名: Perl高效编程 (第2版) 中文版
原名: Effective Perl Programming Ways to Write Better, More Idiomatic Perl,
2nd Edition
作者: (美) 霍尔
(美) 麦克亚当斯
(美) 福瓦
译者: 盛春 等
图书分类: 软件
资源格式: PDF
版本: 扫描版
出版社: 人民邮电出版社
书号: 9787115250469
发行时间: 2011年
地区: 大陆
语言: 简体中文
简介:
内容简介
本书是Perl 编程领域的“圣经级”著作。它提供了一百多个详实的应用案例,足
以涵盖编程过程中经常遇到的方方面面,由此详细阐释出各种高效且简洁的写法。本书
第1 版曾畅销十年之久,而在第2 版中不仅修正了前版存在的一些问题,更与时俱进地
引入了许多Perl 领域的新主题,使内容更加完善丰富,也更具实用性。
本书为初级Perl 程序员铺就了一条通往高阶之路,而对高级Perl 程序员来说,本
书也是必备的技术参考。
目录:
第1章 Perl基础
第2章 Perl的地道用法
第3章 正则表达式
第4章 子程序
第5章... 阅读全帖 |
|
a*****i 发帖数: 4391 | 24 oh.
Go to cpan.org and find the DBI, DBD module, install them and you are
set to go. :)
Dont forget to read the related documentation though. Since I dont remeber
what other moduels are pre-requirement to install. |
|
a****s 发帖数: 47 | 25 What can cpan shell do? |
|
|
c*******n 发帖数: 112 | 27 我总是得到如下错误信息。束手无策,谢谢了。
root@localhost perl-5.8.8]# make
cc -L/usr/local/lib -o miniperl \
miniperlmain.o opmini.o libperl.a
opmini.o(.text+0x4907): In function `Perl_scalar':
opmini.o(.text+0x8f14): In function `Perl_list':
opmini.o(.text+0xb2a2): In function `Perl_load_module_nocontext':
libperl.a(perl.o)(.text+0x27): In function `perl_alloc':
libperl.a(perl.o)(.text+0x39): In function `perl_alloc':
libperl.a(perl.o)(.text+0x7b): In function `perl_alloc':
libperl.a(perl.o)(.text+0x107): In f |
|
a*****i 发帖数: 4391 | 28 seems like you didn't install pthread library.
yum install pthread? |
|
c*******n 发帖数: 112 | 29 many thanks.
Is it supposed to be installed with RedHat Enterprise Version?? |
|
|
w********e 发帖数: 557 | 31
A lot of things are optional during RHES install. You can add them later
with the CD. But Redhat install sucks, very user unfriendly. |
|
Z**0 发帖数: 1119 | 32 /usr/local/lib有些什么lib?觉得这个怪怪的。
如果你要赶潮流,就不要用企业版的linux,要用社区版本的linux。 |
|
y*****a 发帖数: 171 | 33 RHEL 5.3 has perl 5.8.8,
yum install perl |
|
c*******n 发帖数: 112 | 34 the problem is that I am using RH linux AS4. |
|
r****t 发帖数: 10904 | 35 perl 很难混出头的,你得维护一堆 module 在 cpan, 或者就是写 perl6 实现才能在
社区有点头面。。。 |
|
n******7 发帖数: 12463 | 36 server上装的是centos 5, 我的台机是ubuntu 10.04
一直忍受server的python2.4,前几天要用一个包,需要python2.6+,于是装了2.6,结
果安装numpy和scipy出问题了,跟LAPACK有关的。google了一圈,也没解决,只是看到
很多人建议不要自己试图折腾LAPACK和BLAS,很麻烦。 readline也有问题,只好继续
用2.4。ubuntu自带2.6,所以没问题。我记得当时server的2.4安装numpy也有问题,忘
记怎么折腾之后搞定的。
今天安装另一个东西,需要perl Moose module。结果server上cpan安装就是不对,ubuntu
一次
搞定。
很早之前,为了安装一个软件,不得不把server上过旧的一个lib给update了,结果不
小心让ssh都挂了,最后通过特殊通道重启了才ok
实在受不了了,准备跟老板建议适当的时候重装server。问题是老板完全不懂(最近的
笑话是把lock当作log out,跟我抱怨每次电脑backup后都log out。然后发现windows
做的是增量备份,大赞super ... 阅读全帖 |
|
s*******a 发帖数: 8827 | 37 for me, its because of the shell, emacs, latex, auctex, gnus, w3m, Perl with
cpan, and gcc. Yeah you could do all those in windows, but linux makes
using them much easier, more natural and more comfortable. I especially like
the package manager in ubuntu!
I do want to try mac os at some point though, see if it offers a similar
experience as linux.. |
|
s*******a 发帖数: 8827 | 38 for me, its because of the shell, emacs, latex, auctex, gnus, w3m, Perl with
cpan, and gcc. Yeah you could do all those in windows, but linux makes
using them much easier, more natural and more comfortable. I especially like
the package manager in ubuntu!
I do want to try mac os at some point though, see if it offers a similar
experience as linux.. |
|
p**i 发帖数: 688 | 39 run "cpan" as root, then
install IO::Tee
5.
64-
.8
x86_
perl/ |
|
b****r 发帖数: 113 | 40 I am doing time zone conversion by using perl. I am getting stuck at how to
convert GMT time to local time without worrying the daylight saving shift.
Searching CPAN gave me a lot of frustration and it seems there is no clear
answer : ) Thanks in advance! |
|
|
t****t 发帖数: 6806 | 42 did you install the module? how did you install the module?
site_ |
|
i***1 发帖数: 95 | 43 Both Perl and Python are cool. I personally like perl better, maybe because
I know her first.
For perl, the excellent first book you need is the "Learning Perl". Another
good thing about perl is there is a CPAN website full of packages.
Python is useful too. I learned Python while being a TA for it...
It seems Python is more popular. Otherwise, why they have a class in school
with python but not perl. |
|
c*m 发帖数: 1114 | 44 这玩意我写过,比C++/Java容易太多。无法调试?没用过komodo?
无法复用?CPAN上面那么多包是干啥用的?
我上面只是打个比方,前提是指用不用API/lib或其他第三方的包,单论做文字处理,P
erl比C++/Java强了不值一个档次。 |
|
w*****e 发帖数: 721 | 45 perl has cpan that beat python. |
|
|
|
|
s******o 发帖数: 656 | 49 这些都是unix shell script么?
之前是听说perl不好学,所以开始学的python,但是发现python好像没有cpan之类的支
持。现在很困惑,不知道哪个语言比较适合我的需要,本行不是编程,只是research中
需要hand collect data,之后也可能需要去网页上提取数据,希望编个小脚本代替hand
collect,但是时间有限,拿不出很多时间学语言,大拿们给指条明路啊! |
|