pspp-dump-sav command not found
Introduction
When you run more command in linux terminal / console, you get the following error message
pspp-dump-sav: command not found
or when using sudo you get the following error message
sudo: pspp-dump-sav: command not found
Solutions to pspp-dump-sav: command not found
How To Fix pspp-dump-sav: command not found in Ubuntu / Debian / Kali Linux / Raspbian
In Ubuntu pspp-dump-sav is provided by pspp package.
pspp is:
PSPP is a program for statistical analysis of sampled data. It is a free replacement for the proprietary program SPSS.
PSPP supports T-tests, ANOVA, GLM, factor analysis, non-parametric tests, and other statistical features. PSPP produces statistical reports in plain text, PDF, PostScript, CSV, HTML, SVG, and OpenDocument formats.
PSPP has both text-based and graphical user interfaces. The PSPP user interface has been translated into a number of languages.
To fix this problem, we can install more using the command below.
sudo apt-get -y install pspp
This command might take some time to finish depending on your machine internet connection.
You can also use apt command to install pspp.
sudo apt -y install pspp
Or if you have aptitude installed you can use the following command.
sudo aptitude install pspp
Summary
In this tutorial we learn how to fix pspp-dump-sav command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.