Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to manually upgrade the version of node in CentOs system

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article introduces you how to manually upgrade the version of node in CentOs system. The content is very detailed. Interested friends can refer to it for reference. I hope it can help you.

1. Find the corresponding nodejs package

2. Switch to the node installation location here/usr/local/lib/nodejs

There is no way to create

mkdir /usr/local/lib/nodejs

3. download

wget node-v8.12.0-linux-x64.tar.xz

4. decompression

tar -xJvf node-8.12.0-linux-x64.tar.xz -C /usr/local/lib/nodejs mv /usr/local/lib/nodejs/node-8.12.0-linux /usr/local/lib/nodejs/node-8.12.0

5. Configure environment variables

vim ~/.profile

Enter the following

export NODEJS_HOME=/usr/local/lib/nodejs/node-8.12.0/bin export PATH=$NODEJS_HOME:$PATH

6. Refresh environment variables immediately

~/.profile

7. instrumented version

node -v

8. Establish system links to simplify calls

sudo ln -s /usr/local/lib/nodejs/node-8.12.0/bin/node /usr/bin/node sudo ln -s /usr/local/lib/nodejs/node-8.12.0/bin/npm /usr/bin/npm sudo ln -s /usr/local/lib/nodejs/node-8.12.0/bin/npx About how to manually upgrade the version of the node in CentOs system to share here, I hope the above content can be of some help to everyone, you can learn more knowledge. If you think the article is good, you can share it so that more people can see it.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report