From: Alan W. I. <ir...@be...> - 2014-06-01 05:02:43
|
On 2014-05-28 22:11-0000 rush wrote: > > I have been compiling FORTRAN Plplot for sometime using F77 compiler. But, > after updating my Ubuntu operating system, the deprecated F77 plplot > libraries were removed. At that unfortunate point, I found out that PLPLOT > has shifted to f95 compiler which encompasses both F77, F90 and F95 codes. > > When I attempt to compile the fortran Plplot examples, I get the following > error: > > > use plplot > 1 > "Fatal Error: Can't open module file 'plplot.mod' for reading at (1): No > such file or directory" > > This error relates to the "use plplot". I cannot determine where this file > or directory is located. Please advise. On Debian (and probably Ubuntu as well) you can search for system file locations by using the apt-file command. Here is the result here (Debian stable) for that command when searching for plplot.mod: irwin@raven> apt-file search plplot.mod libplplot-dev: /usr/lib/fortran/modules/plplot/plplot.mod This means if I want access to this file I have to install the libplplot-dev package (if that has not been done already), and also gives the location of the desired file once installed. The location of the file and even the name of the package on your Ubuntu system might be different (that depends on the actual Ubuntu packaging), but the principle is the same for all Debian-related distributions such as Debian stable or Ubuntu; use apt-file (which you might have to install and update first if it is not already installed on your system) to find out where any system file (including plplot.mod) is located. HTH. Alan __________________________ Alan W. Irwin Astronomical research affiliation with Department of Physics and Astronomy, University of Victoria (astrowww.phys.uvic.ca). Programming affiliations with the FreeEOS equation-of-state implementation for stellar interiors (freeeos.sf.net); the Time Ephemerides project (timeephem.sf.net); PLplot scientific plotting software package (plplot.sf.net); the libLASi project (unifont.org/lasi); the Loads of Linux Links project (loll.sf.net); and the Linux Brochure Project (lbproject.sf.net). __________________________ Linux-powered Science __________________________ |