in reply to Re^2: Tcl module install issues
in thread Tcl module install issues

Hi Marto,

I have used the below procedure

2. perl Makefile.PL

make

make test

make install

And also, I didn't get any errors while installing

Replies are listed 'Best First'.
Re^4: Tcl module install issues
by Corion (Patriarch) on Jan 05, 2017 at 11:34 UTC

    Most likely the perl you used to run Makefile.PL was not the perl you use to run your program (/home/RTG/common/local_install/Perl5.24/bin/perl).

    Update: You can find the perl your shell runs with the following command:

    which perl

    Ideally this shows you the perl binary you want to use. Personally, I prefer to be explicit in specifying the full path to the Perl (version) I want to use when installing modules:

    /opt/perl/perl-5.24/bin/perl Makefile.PL make make test make install
Re^4: Tcl module install issues
by marto (Cardinal) on Jan 05, 2017 at 11:45 UTC

    The error message you reported usually comes from a module installation problem, for example copying .pm files around, which misses other things e.g. XS modules. At the moment I can't get the module to install at all at the moment (ARM based Debian). There are open tickets but I can't see them right now as rt.cpan is currently down (bad proxy, reported).

    Update: Corion is right.