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

At a guess you may not have Tcl installed correctly. How did you install this?

Replies are listed 'Best First'.
Re^3: Tcl module install issues
by Anonymous Monk on Jan 05, 2017 at 11:06 UTC

    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

      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

      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.