I am on Ubuntu 20.04. I am trying to install a syllable counting program from source.
Ref: https://github.com/words/syllable
From readme.md
This package is ESM only: Node 12+ is needed to use it and it must be
import
ed instead ofrequire
d.'' running the command:
$ node --version
v10.19.0
so i try to install a newer version of node but it fails:
~$ curl -fsSL deb.nodesource.com/setup_12.x | sudo -E bash - ## Installing the NodeSource Node.js 12.x repo... ## Populating apt-get cache... + apt-get update E: Malformed entry 1 in list file /etc/apt/sources.list.d/nodesource.list (Component) E: The list of sources could not be read. Error executing command, exiting –
any help?!
Please open URL: https://github.com/nodesource/distributions/blob/master/README.md#debinstall
For example, to install NodeJS 17+, you can follow the below instructions
And given URL containes more helpful information. I would suggest going through it.
Thanks.