in reply to How do you run Perl on _your_ system?
Personally, my main Perl is a recent build that I complied myself and keep in /opt (sh Configure -de -Dprefix='/opt/perl5.xx'). That way, I can install CPAN modules into it without the worry of messing up the system Perl, and the modules are in the same directory tree as Perl itself, so I generally don't have to worry about version mismatches. Additionally, when I need a specific Perl version, I use perlbrew, which basically has the same effect of a self-contained Perl, except its environment variables can be applied temporarily. Otherwise, I agree with Fletch to stay away from the system Perl and instead use #!/usr/bin/env perl and PATH to point your scripts at whatever Perl you like. If you do want to install modules into the system Perl, use the system's package manager to do that (though that might not provide all CPAN modules or the latest versions) - I do this on older Raspberry Pis because compiling things there is very slow.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How do you run Perl on _your_ system?
by ikegami (Patriarch) on Jun 16, 2022 at 13:42 UTC |