in reply to Start Padre on gentoo box

In theory, the padre script gets installed into the same directory as your perl binary, so you should be able to run it by finding the place of Perl via which perl and then use that path:

$ which perl /opt/perl/bin/perl $ /opt/perl/bin/padre

But if Perl were in your path, then padre would also be. So do a find / -name 'padre', wait some time, and then hopefully your computer will have found where the padre script lies.

Alternatively, just copy padre to a file on your machine, make it executable and you have your own, personal padre, provided that the rest of the installation worked.

Replies are listed 'Best First'.
Re^2: Start Padre on gentoo box
by Anonymous Monk on Oct 30, 2008 at 22:24 UTC
    Thanks Corion!

    The padre script isn't in my perl binary directory:

    ~ $ which perl /usr/bin/perl ~ $ ls /usr/bin/padre ls: /usr/bin/padre: Datei oder Verzeichnis nicht gefunden

    So I tried to copy the file in my home directory. After executing this script I realized that I have to compile perl with USE flag ithreads. So hopefully it's solved after recompiling perl.

    Thanks again, Andreas