csv2pskc command not found

In this troubleshooting guide we learn how to fix csv2pskc command not found error message

Introduction

When you run more command in linux terminal / console, you get the following error message

csv2pskc: command not found

or when using sudo you get the following error message

sudo: csv2pskc: command not found

Solutions to csv2pskc: command not found

How To Fix csv2pskc: command not found in Ubuntu / Debian / Kali Linux / Raspbian

In Ubuntu csv2pskc is provided by pskc-utils package.

pskc-utils is:

These utilities can be used to convert Portable Symmetric Key Container (PSKC) files as defined in RFC6030.

  • csv2pskc - Convert a CSV file to PSKC
  • pskc2csv - Convert a PSKC file to CSV
  • pskc2pskc - Reformat or change encryption of a PSKC file

To fix this problem, we can install more using the command below.

sudo apt-get -y install pskc-utils

This command might take some time to finish depending on your machine internet connection.

You can also use apt command to install pskc-utils.

sudo apt -y install pskc-utils

Or if you have aptitude installed you can use the following command.

sudo aptitude install pskc-utils

Summary

In this tutorial we learn how to fix csv2pskc command not found error in Ubuntu / Debian / Kali Linux or Raspbian distribution.