You are getting this error only when you are not running L3mon in kali linux, you are using other distribution of linux like ubuntu, zorin, garuda, fedora etc. What you just need to do?
Step 1: Install NodeJs V17 in your computer.
# Using Ubuntu
curl -fsSL https://deb.nodesource.com/setup_17.x | sudo -E bash -
sudo apt-get install -y nodejs
# Using Debian, as root
curl -fsSL https://deb.nodesource.com/setup_17.x | bash -
apt-get install -y nodejs
##### Using RHEL, CentOS, CloudLinux, Amazon Linux or Fedora:
# As root
curl -fsSL https://rpm.nodesource.com/setup_17.x | bash -
# No root privileges
curl -fsSL https://rpm.nodesource.com/setup_17.x | sudo bash -
Post a Comment