After installing HDF, GD,Proj and making sure I have libplplotd.so it has worked. I do not have the correct permissions to use cpan -i. So I couldn't see the libplplotd error if any. But after having the network guy install the first 3 modules cpanm -L local/ PDL::Graphics::PLplot worked. Now to try this on a server. | [reply] [d/l] [select] |
After installing HDF, GD,Proj and making sure I have libplplotd.so it has worked.
Excellent - thanks for the update.
(Note that the success of building PDL::Graphics::PLplot does not rely on the availability of HDF, GD, or Proj.)
To make sure that PDL does indeed now provide HDF, GD, and Proj support, you could run the following 3 commands:
$ perl -MPDL::IO::HDF -e 1
$ perl -MPDL::IO::GD -e 1
$ perl -MPDL::Transform::Proj4 -e 1
If all is good, then all three of those commands will not produce any output.
When I built PDL yesterday (for the first time in quite a while) I noticed that the fortran routines (eg PDL::Slatec) were missing.
I think this happened because ExtUtils::F77 had not been installed.
You can check for the presence of the fortran stuff with:
$ perl -MPDL::Slatec -e 1
If it turns out that PDL::Slatec is not available, and you want that support, I would suggest installing ExtUtils::F77 and then rebuilding PDL.
Cheers, Rob
| [reply] [d/l] [select] |
So then I was just missing the libplplot.so file. I had them install everything and that worked. Thanks for all of the help. Ran the commands and got no output. I am not sure why cpan doesnt go and get libplplot. It grabs other dependencies.
| [reply] |