in reply to Re^2: Package install issue
in thread Package install issue
Instead of jumping through hoops trying to install a huge pile of stuff just in order to get a repl on failure, try something like this:
$SIG{ __DIE__ } = sub { require Carp; Carp::Cluck( @_ ); while( 1 ) { my $code = <STDIN>; print eval $code; } };
Of course, that's just a minimalist implementation that may not even run as I typed it straight into the browser, but it's probably easier to fix that up to something usable than chase through all the dependencies of the module you're trying to use.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Package install issue
by Chaoui05 (Scribe) on Jun 13, 2016 at 16:38 UTC | |
|
Re^4: Package install issue
by Chaoui05 (Scribe) on Jun 14, 2016 at 09:16 UTC | |
by BrowserUk (Patriarch) on Jun 14, 2016 at 09:28 UTC |