DEV Community

Clive Da
Clive Da

Posted on

OCI Oracle Linux 7 node 10 npm 6 gotcha

Are you running the right version of node & npm on your OCI Oracle Linux 7 instances ?

If you are not seeing versions 10 and 6

[root@instance-2 ~]# node -v
v10.19.0
[root@instance-2 ~]# npm -v
6.13.4

then you probably want to disable vi /etc/yum.repos.d/oracle-epel-ol7.repo and reinstall node & npm with

# yum install oracle-nodejs-release-el7
# yum install nodejs

Top comments (0)