Reputation: 163
I installed nodejs first with nvm but it didn't work as I expected.
When I installed it with LTS version sudo yum -y install nodejs
, it worked but I'm not able to find the version of node.
node -v
-bash: /root/.nvm/versions/node/v8.11.3/bin/node: No such file or directory
I tried to remove nvm but still getting the same message.
Upvotes: 7
Views: 23802
Reputation: 4202
Use the traditional command
node --version
OR
node -v
If nodejs -v
is working and above solutions not, refer this: symbolic-link-error
Upvotes: 6
Reputation: 11927
In the command line just type the following
node --version
or you can use this code
node -v
Upvotes: 0