How can I install Perl's Event::Lib on Mac OS X?
I want to install Realplexor (a Perl comet server) on Mac and it requires
# apt-get install libevent-dev gcc
# perl -MCPAN -e "install Event::Lib"
I installed the firs开发者_StackOverflowt one using:
port install libevent
but I can't find "Event::Lib" with port nor fink.
Does anyone know how I could install that dependency?
At your superuser commandline type:
perl -MCPAN -e shell
At the CPAN prompt type:
install Event::Lib
You can find more information on CPAN modules at CPAN's Website
精彩评论