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

Hi All,

/me pounds head against wall for the past half hour...

I'm trying to install ppd packages for activestate perl build 806. I am on a stand alone network, and I'm trying to install a ppm package...

C:\az>dir <snip> Archive-Zip.ppd </snip> C:\az>ppm install -force Archive-Zip.ppd Error: No valid repositories: Error: 500 Can't connect to ppm.activest +ate.com:80

Of course, this would be expected if I was trying to install the module over the network, but I'm not... The ppd file is in the current directory!

/me takes a deep breath...

Any clue what is going on? Thanks.



----
Zak

Replies are listed 'Best First'.
Re: PPM & Private Network
by Mr. Muskrat (Canon) on Aug 27, 2003 at 15:41 UTC

    There are several ways to go about it.

    • ppm install ./Archive-Zip.ppd
    • ppm3 install ./Archive-Zip.ppd
    • ppm3 repository add dot . install Archive-Zip.ppd
    • ppm set repository dot . install Archive-Zip.ppd

      Very strange. The first two ways didn't work, however the third did... thanks!

      ----
      Zak
        I've had some success with installing using ppm install ./filename.ppd. I prefer the last two methods since the "dot" repository will always be the current working directory.