rdflib command not found

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

Introduction

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

rdflib: command not found

or when using sudo you get the following error message

sudo: rdflib: command not found

Solutions to rdflib: command not found

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

In Ubuntu rdflib is provided by nasm package.

nasm is:

Netwide Assembler. NASM will currently output flat-form binary files, a.out, COFF and ELF Unix object files, and Microsoft 16-bit DOS and Win32 object files.

Also included is NDISASM, a prototype x86 binary-file disassembler which uses the same instruction table as NASM.

NASM is released under the GNU Lesser General Public License (LGPL).

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

sudo apt-get -y install nasm

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

You can also use apt command to install nasm.

sudo apt -y install nasm

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

sudo aptitude install nasm

Summary

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