Linux completely removes node.js and reinstalls it through the yum command

Linux completely removes node.js and reinstalls it through the yum command

first step

Delete it once with the built-in package management

	yum remove nodejs npm -y

Manually delete the leftovers

  • Go to /usr/local/lib and delete all node and node_modules folders
  • Go to /usr/local/include and delete all node and node_modules folders
  • Enter /usr/local/bin and delete the executable file of node

Install the latest xz package from nodejs official website

	# Download wget https://nodejs.org/dist/v10.13.0/node-v10.13.0-linux-x64.tar.xz
	
	# Unzip xz -d node-v9.8.0-linux-x64.tar.xz
	tar -xvf node-v9.8.0-linux-x64.tar
	
	# Enter the directory cd node-v10.13.0-linux-x64/
	
	# Create a soft link ln -s /opt/nodejs/node-v10.13.0-linux-x64/bin/node /usr/local/bin/node
	ln -s /opt/nodejs/node-v10.13.0-linux-x64/bin/npm /usr/local/bin/npm
	
	# Test node -v
	npm -v
	
	# Configure taobao image npm config set registry https://registry.npm.taobao.org

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

You may also be interested in:
  • How to install node.js development environment in Linux
  • How to Install Node.js on Linux
  • Install node.js in linux using package manager

<<:  Solution to MySQL connection exception and error 10061

>>:  The way to represent colors in HTML is by using 6-digit hexadecimal codes, RGB or keywords.

Recommend

Problems and solutions when replacing Oracle with MySQL

Table of contents Migration Tools Application tra...

Linux Check the installation location of the software simple method

1. Check the software installation path: There is...

Example verification MySQL | update field with the same value will record binlog

1. Introduction A few days ago, a development col...

Vue3+el-table realizes row and column conversion

Table of contents Row-Column Conversion Analyze t...

Linux remote control windows system program (three methods)

Sometimes we need to remotely run programs on the...

How to change $ to # in Linux

In this system, the # sign represents the root us...

How to split and merge multiple values ​​in a single field in MySQL

Multiple values ​​combined display Now we have th...

js uses cookies to remember user page operations

Preface During the development process, we someti...

Implementation of MySQL GRANT user authorization

Authorization is to grant certain permissions to ...

Detailed explanation of basic operation commands for Linux network settings

Table of contents View network configuration View...

Detailed explanation of JavaScript stack and copy

Table of contents 1. Definition of stack 2. JS st...