search
HomeBackend DevelopmentPHP TutorialNodejs installation steps under Linux

I have installed node under Windows and Mac before, and it feels very convenient. Unexpectedly, it took me a long time to install it under Linux today, so I will record it here.

First go to the official website to download the code. Here you must note that there are two types of installation, one is the Source Code source code, and the other is the compiled file. I just followed the installation method of the online source code to operate the compiled files, but I was stuck for a long time.

Nodejs installation steps under Linux

Nodejs installation steps under Linux

(1) Compiled files

The ones in the red box in the picture above are already compiled file, select the corresponding Linux version and download it. Simply put, after decompression, node and npm already exist in the bin folder. If you enter the corresponding file and execute the command line, there will be no problem at all, but it is not global. So just set this as global by establishing a soft link.

tar xf node-v5.10.1-linux-x64.tar.gz -C /usr/local/
 
cd /usr/local/
 
mv node-v5.10.1-linux-x64/ nodejs
 
ln -s /usr/local/nodejs/bin/node /usr/local/bin
 
ln -s /usr/local/nodejs/bin/npm /usr/local/bin

(2) Compile through source code

The file you download in this way is Source code, because my Linux version is 6. x, the default gcc-c++ is version 4.4.7, and after downloading it, the source code compilation requires the gcc-c++ version to be at least 4.8, so I upgraded the GCC-C++ version. As a result, the source code compilation upgraded GCC-C++ and compiled After more than an hour, the compilation was not completed! I was decisively tricked...

root># ./configure
 
WARNING: C++ compiler too old, need g++ 4.8 or clang++ 3.4 (CXX=g++)
 
creating ./icu_config.gypi
 
{ 'target_defaults': { 'cflags': [],
 
            'default_configuration': 'Release',
 
            'defines': [],
 
            'include_dirs': [],
 
            'libraries': []},
 
 'variables': { 'asan': 0,
 
         'gas_version': '2.20',
 
         'host_arch': 'x64',
 
         'icu_small': 'false',
 
         'node_byteorder': 'little',
 
         'node_install_npm': 'true',
 
         'node_prefix': '/usr/local',
 
         'node_release_urlbase': '',
 
         'node_shared_http_parser': 'false',
 
         'node_shared_libuv': 'false',
 
         'node_shared_openssl': 'false',
 
         'node_shared_zlib': 'false',
 
         'node_tag': '',
 
         'node_use_dtrace': 'false',
 
         'node_use_etw': 'false',
 
         'node_use_lttng': 'false',
 
         'node_use_openssl': 'true',
 
         'node_use_perfctr': 'false',
 
         'openssl_fips': '',
 
         'openssl_no_asm': 0,
 
         'target_arch': 'x64',
 
         'uv_parent_path': '/deps/uv/',
 
         'uv_use_dtrace': 'false',
 
         'v8_enable_gdbjit': 0,
 
         'v8_enable_i18n_support': 0,
 
         'v8_no_strict_aliasing': 1,
 
         'v8_optimized_debug': 0,
 
         'v8_random_seed': 0,
 
         'v8_use_snapshot': 'true',
 
         'want_separate_host_toolset': 0}}
 
creating ./config.gypi
 
creating ./config.mk
 
WARNING: warnings were emitted in the configure phase

(3) apt-get

There is another way It is the apt-get method under Ubuntu. I have been fooled by this method before

sudo apt-get install nodejs
 
sudo apt-get install npm

After installing like this, you will find that the node command is not good So, the nodejs command can be used...

The above is the entire content of this article. I hope it will be helpful to everyone's learning, and I also hope that everyone will support the PHP Chinese website.

For more articles related to Nodejs installation steps under Linux, please pay attention to the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Working with Flash Session Data in LaravelWorking with Flash Session Data in LaravelMar 12, 2025 pm 05:08 PM

Laravel simplifies handling temporary session data using its intuitive flash methods. This is perfect for displaying brief messages, alerts, or notifications within your application. Data persists only for the subsequent request by default: $request-

cURL in PHP: How to Use the PHP cURL Extension in REST APIscURL in PHP: How to Use the PHP cURL Extension in REST APIsMar 14, 2025 am 11:42 AM

The PHP Client URL (cURL) extension is a powerful tool for developers, enabling seamless interaction with remote servers and REST APIs. By leveraging libcurl, a well-respected multi-protocol file transfer library, PHP cURL facilitates efficient execution of various network protocols, including HTTP, HTTPS, and FTP. This extension offers granular control over HTTP requests, supports multiple concurrent operations, and provides built-in security features.

Simplified HTTP Response Mocking in Laravel TestsSimplified HTTP Response Mocking in Laravel TestsMar 12, 2025 pm 05:09 PM

Laravel provides concise HTTP response simulation syntax, simplifying HTTP interaction testing. This approach significantly reduces code redundancy while making your test simulation more intuitive. The basic implementation provides a variety of response type shortcuts: use Illuminate\Support\Facades\Http; Http::fake([ 'google.com' => 'Hello World', 'github.com' => ['foo' => 'bar'], 'forge.laravel.com' =>

12 Best PHP Chat Scripts on CodeCanyon12 Best PHP Chat Scripts on CodeCanyonMar 13, 2025 pm 12:08 PM

Do you want to provide real-time, instant solutions to your customers' most pressing problems? Live chat lets you have real-time conversations with customers and resolve their problems instantly. It allows you to provide faster service to your custom

Explain the concept of late static binding in PHP.Explain the concept of late static binding in PHP.Mar 21, 2025 pm 01:33 PM

Article discusses late static binding (LSB) in PHP, introduced in PHP 5.3, allowing runtime resolution of static method calls for more flexible inheritance.Main issue: LSB vs. traditional polymorphism; LSB's practical applications and potential perfo

PHP Logging: Best Practices for PHP Log AnalysisPHP Logging: Best Practices for PHP Log AnalysisMar 10, 2025 pm 02:32 PM

PHP logging is essential for monitoring and debugging web applications, as well as capturing critical events, errors, and runtime behavior. It provides valuable insights into system performance, helps identify issues, and supports faster troubleshoot

HTTP Method Verification in LaravelHTTP Method Verification in LaravelMar 05, 2025 pm 04:14 PM

Laravel simplifies HTTP verb handling in incoming requests, streamlining diverse operation management within your applications. The method() and isMethod() methods efficiently identify and validate request types. This feature is crucial for building

Discover File Downloads in Laravel with Storage::downloadDiscover File Downloads in Laravel with Storage::downloadMar 06, 2025 am 02:22 AM

The Storage::download method of the Laravel framework provides a concise API for safely handling file downloads while managing abstractions of file storage. Here is an example of using Storage::download() in the example controller:

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function