http://www.perlmonks.org?node_id=1046585

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

can I just reinstall? any issues I have to worry about?

Replies are listed 'Best First'.
Re: install activestate 5.10 over 5.8.9
by davido (Cardinal) on Jul 26, 2013 at 19:03 UTC

    One issue will be that any XS modules will also need to be reinstalled, either using PPM, or the more traditional way. Perl 5.10 was not byte-compatible with 5.8.x.

    That's probably the most significant issue; you will need to reinstall, for example, DBI, DBD::whatever, List::MoreUtils, and any other non-core modules that you might be using that happen to rely on XS code.

    Of course you really should simulate your environment on another machine (or at least a virtual machine), install 5.8.9 and all the modules you depend on, then install 5.10, reinstall the non-core modules, and test, test, test. Only then ought you to upgrade production.

    You may also want to check the CPAN test matrix for any non-core modules you use to verify that they continued passing their test suite on both 5.8.9 and 5.10. By now (many years later) any of the few issues there may have been have probably been worked out, but it's worth checking. And check the perldelta for 5.10, paying particular attention to Incompatible Changes.


    Dave

      thanks
Re: install activestate 5.10 over 5.8.9 (no, zip)
by Anonymous Monk on Jul 26, 2013 at 21:20 UTC

    For this to work you have to completely REMOVE one perl -- or install in another location -- this is the "safest" way

    If you use the zip installer from http://downloads.activestate.com/ActivePerl/releases/ you can have multiple perls in different directories. Well, provided you edit Installer.bat before running it, so it doesn't pollute the registry

    Also, you want to install 5.10.1 and NOT 5.10

      ... or maybe something still current (at AS, anyway) and still supported, like 5.16.n.
      If I've misconstrued your question or the logic needed to answer it, I offer my apologies to all those electrons which were inconvenienced by the creation of this post.