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)

👋 Kindness is contagious

Dive into an ocean of knowledge with this thought-provoking post, revered deeply within the supportive DEV Community. Developers of all levels are welcome to join and enhance our collective intelligence.

Saying a simple "thank you" can brighten someone's day. Share your gratitude in the comments below!

On DEV, sharing ideas eases our path and fortifies our community connections. Found this helpful? Sending a quick thanks to the author can be profoundly valued.

Okay