I want to install and run some tests (I use to use SPSS at uni) using PSPP but I’m having trouble finding it for suse. Has anyone here had any experience with it or knows of any places I can obtain a suse rmp?
Do I need to download the source code and compile it myself? I’ve played with R but it lacks a GUI and from the looks of it, PSPP is similar to what I’m looking for.
Also on RPM Pbone Search there are no pre-built rpms for opensuse but there are src.rpm’s for fedora core 9 which I think you can re-build for opensuse with something like:
#rpm --rebuild pspp-0.6.0-5.fc9.src.rpm
(note: I am not sure if actually the right command is rpmbuild --rebuild since I did not rebuild a package for a long time now)
If this will work the rebuilt package should be in /usr/src/packages/RPMS/your_architecture/ and you can install it.
I had a quick look at the INSTALL file and I think you can get all necessary packages to install it from source if you would like to give it a try too.
Hi
Just tried to compile the latest stable release but dies during the
make, I would say it may be the gcc4.3 issue.
So tried the latest development version 0.7.0 and that that works fine,
you just need to install git, then create a build directory as you also
need to download the gnulib via git.
Note the ./configure switches are all one line before the make
command
mkdir pspp_build
cd pspp_build
git clone git://git.savannah.gnu.org/pspp.git
git clone git://git.savannah.gnu.org/gnulib.git
cd pspp
make -f Smake
../configure --prefix=/usr --sysconfdir=/etc --bindir=/bin
--with-gui-tools
make
make check
sudo make install
I did get one error during the check related to the postgres database
as I don’t have one installed.
–
Cheers Malcolm °¿° (Linux Counter #276890)
openSUSE 11.0 x86 Kernel 2.6.25.16-0.1-default
up 4:53, 2 users, load average: 1.15, 1.07, 0.69
GPU GeForce 6600 TE/6200 TE - Driver Version: 173.14.12
Thanks guys. I’m still in bed (watching Scrapheap Challenge - one of life’s pleasures) but I’ll give it a go a bit later. I’ll post back my results. Thanks guys!
configure: error: The following required prerequisites are not installed.
You must install them before PSPP can be built:
libglade 2.0 v2.6.0 or later (or use --without-gui)
libgslcblas
libgsl (version 1.4 or later)
I have installed gsl, libgladeui and the devel files as well as plotutils, libglade, libgslcblas and libgsl. I must be missing something silly or be just off the right track. I’ll keep playing and see what I find. I feel like I’ve installed a dozen different things now!
Ok, even closer! Now all I need is the libglade 2.0 v2.6.0 or later. I’m installing more libglade related things so lets see if that works. Why can’t it be a simple process? grumble grumble!
Just make sure you cd to pspp_build directory, run the two git commands
then do a ls command. You should then see two directories, gnulib and
pspp, cd to pspp and run the commands
–
Cheers Malcolm °¿° (Linux Counter #276890)
openSUSE 11.0 x86 Kernel 2.6.25.16-0.1-default
up 4:06, 1 user, load average: 0.11, 0.07, 0.03
GPU GeForce 6600 TE/6200 TE - Driver Version: 173.14.12