Can I install a pre-configured Perl binary package in my home directory? - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T09:27:28Zhttp://stackoverflow.com/feeds/question/588559http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/588559/can-i-install-a-pre-configured-perl-binary-package-in-my-home-directory2Can I install a pre-configured Perl binary package in my home directory?Ville M2009-02-26T00:24:30Z2009-02-26T23:30:40Z
<p>I want to set up Perl 5.10 in my home directory in addition to the ancient Perl currently on the machine in the /usr/local. I am not a super-user on this machine. </p>
<p>I found the require <a href="http://hpux.connect.org.uk/hppd/hpux/Languages/perl-5.10.0/" rel="nofollow">5.10 HPUX perl</a> binary package and it seems to work, but for some reason it seems to assume it's running in /usr/local (as evidenced by @INC error messages). Is there some other variable in addition to PERLLIB, like PERLHOME or something I need to set so that Perl won't look for anything in the /usr/local dirs? </p>
<p>P.S. I seen <a href="http://ask.metafilter.com/81802/Installing-perl-in-a-user-folder" rel="nofollow">advice online</a> to compile and set the dir in the ./Configure step, but I been having hard time compiling things on this old box so I'd prefer to use the pre-compiled Perl since it seems mostly to work. </p>
<p><hr /></p>
<p>UPDATE -- Leon answered this, so basically it's not possible to run perl binary correctly from your home dir unless it was compiled with that in mind</p>
http://stackoverflow.com/questions/588559/can-i-install-a-pre-configured-perl-binary-package-in-my-home-directory/588571#5885712Answer by Leon Timmermans for Can I install a pre-configured Perl binary package in my home directory?Leon Timmermans2009-02-26T00:28:40Z2009-02-26T00:28:40Z<p>It depends on whether or not your <code>perl</code> binary is relocatable. It's a compile time option. What is the output of this command? Is it defined or not?</p>
<pre><code>perl -V:userelocatableinc
</code></pre>
http://stackoverflow.com/questions/588559/can-i-install-a-pre-configured-perl-binary-package-in-my-home-directory/588685#588685-1Answer by chris for Can I install a pre-configured Perl binary package in my home directory?chris2009-02-26T01:07:57Z2009-02-26T01:07:57Z<p>You can point to any interpreter path you want in the first line:</p>
<pre><code>!#/my/local/perl
</code></pre>
<p>And if you're not looking for portability across machines, you can set @INC manually in your script. I think there's a way to get it from the env as well, which might be more portable.</p>
http://stackoverflow.com/questions/588559/can-i-install-a-pre-configured-perl-binary-package-in-my-home-directory/592942#5929422Answer by Schwern for Can I install a pre-configured Perl binary package in my home directory?Schwern2009-02-26T23:30:40Z2009-02-26T23:30:40Z<p>You're not going to like this answer.</p>
<p>Perl stores @INC as strings in its binary. Before there was <code>userelocatableinc</code> the technique to relocate Perl was to do a search and replace on the binary, as well as changing them in Config.pm. This is how ActiveState shipped a relocatable Perl.</p>
<p>The strings have to remain the same size as they were before, padding out any extra space with null bytes. ActiveState would get around this by configuring Perl with a prefix like "/xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxTMPPATHxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx" or something. It also made it really unambiguous to find in the binary. You don't have such luck, so it will only work if the current paths are shorter than the paths you want to replace them with.</p>
<p>But that's way too complicated. Just compile Perl for yourself either using HP/UX's source or just grab the regular source from perl.org. Perl has a dedicated HP/UX developer so it should all go smoothly.</p>