ये Ubuntu 16.04 पर नोड स्थापित करने के लिए मेरे कदम थे:
curl -sL https://deb.nodesource.com/setup_6.x | sudo -E bash -
sudo apt-get install -y nodejs
sudo apt-get install -y npm
जो आधिकारिक निर्देश हैं:
https://nodejs.org/en/download/package-manager/#debian-and-ubuntu-based-linux-distributions
ऐसा करने के बाद, nodejs --version
रिटर्न भरना v4.2.6
।
जैसा कि मैंने इस्तेमाल किया setup_6.x
था मैं मान रहा था कि एक संस्करण जिसकी शुरुआत 6
होगी उसे स्थापित किया जाएगा?
मैंने सोचा कि शायद setup_6.x
होना चाहिए setup_6.2.1
, लेकिन वह पृष्ठ 404 देता है, देखें:
https://deb.nodesource.com/setup_6.x (वहां एक पृष्ठ है)
https://deb.nodesource.com/setup_6.2.1 (एक 404 रिटर्न)
मैं Ubuntu 16.04 पर नोड के नवीनतम स्थिर संस्करण को कैसे स्थापित करूं?
संपादित करें:
ये परिणाम चलने के बाद हैं sudo apt-get install -y nodejs
:
sudo apt-get install -y nodejs
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following packages were automatically installed and are no longer required:
gyp libboost-python1.58.0 libjs-inherits libjs-node-uuid libjs-underscore
libssl-dev libssl-doc libuv1-dev linux-headers-4.4.0-18
linux-headers-4.4.0-18-generic linux-headers-4.4.0-21
linux-headers-4.4.0-21-generic linux-image-4.4.0-18-generic
linux-image-4.4.0-21-generic linux-image-extra-4.4.0-18-generic
linux-image-extra-4.4.0-21-generic linux-signed-image-4.4.0-18-generic
linux-signed-image-4.4.0-21-generic python-configobj python-pycurl
python-pyexiv2 python-pyexiv2-doc
Use 'sudo apt autoremove' to remove them.
The following NEW packages will be installed:
nodejs
0 to upgrade, 1 to newly install, 0 to remove and 0 not to upgrade.
Need to get 0 B/3,162 kB of archives.
After this operation, 13.2 MB of additional disk space will be used.
Selecting previously unselected package nodejs.
(Reading database ... 329473 files and directories currently installed.)
Preparing to unpack .../nodejs_4.2.6~dfsg-1ubuntu4_amd64.deb ...
Unpacking nodejs (4.2.6~dfsg-1ubuntu4) ...
Processing triggers for doc-base (0.10.7) ...
Processing 1 added doc-base file...
Registering documents with scrollkeeper...
Processing triggers for man-db (2.7.5-1) ...
Setting up nodejs (4.2.6~dfsg-1ubuntu4) ...
update-alternatives: using /usr/bin/nodejs to provide /usr/bin/js (js) in auto mode
संपादित करें:
के परिणाम apt-cache policy nodejs
:
apt-cache policy nodejs
nodejs:
Installed: 4.2.6~dfsg-1ubuntu4
Candidate: 4.2.6~dfsg-1ubuntu4
Version table:
*** 4.2.6~dfsg-1ubuntu4 500
500 http://au.archive.ubuntu.com/ubuntu xenial/universe amd64 Packages
100 /var/lib/dpkg/status
apt-cache
डेटा प्रदान कर सकते हैं तो हम देख सकते हैं कि आपका कंप्यूटर रिपॉज में क्या मौजूद है, हम आगे मदद करने में सक्षम हो सकते हैं।
apt-cache policy nodejs
कृपया संपादित करें के रूप में अपने प्रश्न में कृपया के आउटपुट की एक प्रति शामिल करें।