in reply to Package Extraction

What happens when you run 'perl hello.pl'? What happens when you do 'pp -p hello.pl' (which would create 'a.par') and then 'pp -o helloWin.exe a.par'? You need to do a little more troubleshooting before trying to zero in on the problem.


-- 
Human history becomes more and more a race between education and catastrophe. -- HG Wells

Replies are listed 'Best First'.
Re^2: Package Extraction
by DontPanic42 (Novice) on Apr 08, 2008 at 01:10 UTC
    If I run  perl hello.pl, it works as it should, but it seems that the command line doesn't recognize "pp" as a function. I installed the Package Extractor three times already, but it never recognizes "pp" as a command.

      A large part of the problem is that you appear to either be (incorrectly) quoting the error from memory or trying to paraphrase it; this is always a mistake. Either copy and paste the exact error into your email, or tell us that it's not a literal error.

      If it's just a "File not found" error, that's a different animal altogether; "pp" is most likely not in your path, just as GrandFather said. Try using the Windows' "find" feature to figure out where it is - if it's there at all - and whether that folder is in your path. One thing that I've seen happen on occasion is that spaces in the directory names (something that's common in Windows) can create problems.

      
      -- 
      Human history becomes more and more a race between education and catastrophe. -- HG Wells