Re: Clean Install
[email protected] (John Delacour) Sat, 18 Jun 2011 12:47:51 +0100
| Newsgroups | perl.macosx |
|---|---|
| Message-ID | <p06240818ca223daba0e8@[192.168.1.66]> |
At 13:23 +0200 18/06/2011, Marek Stepanek wrote: >And now I spend a lot of time again ... I forgot the hint of Chas. doing: > >% ./intro6.pl > >Which is not working with my > >#!/usr/bin/perl > >so I have to do it like that: > >% perl intro6.pl > >!! > >or I have to change like follows: > >#!/Users/mstep/perl5/perlbrew/perls/perl-5.14.0/bin/perl Yes, well portablility is a great thing and that's why I install Perl in the default location /usr/local/bin, which is linked to from /usr/bin on most servers. I am sure perlbrew has its uses but I have a poor memory and if I install things in the usual places I can more easily find the answers to my problems. In the home environment I simply use either #!/usr/bin/perl or #!/usr/local/bin/perl depending which perl I want to use. On most remote servers the two are equivalent and I have no control over which Perl they have installed. >Thank you all for your great help! Glad it worked. If you want some real fun, try installing PDL :-) JD