Ubuntu 14.04 पर नवीनतम NodeJS संस्करण स्थापित करने में असमर्थ


11

मेरे सर्वर पर मेरे पास 0.10.25"मुझे रीए के संस्करण की आवश्यकता नहीं है, जो कि" 0.10.30 "है, जो कि एलटीएस है nodejs, हालांकि डेवलपर्स 4 वें संस्करण को स्थापित करने के लिए कह रहे हैं, थोड़ा खुदाई करने के बाद, मैंने पाया है कि 0.12यह nodejsकुछ के साथ विलय हो गया है अन्य पैकेज।

के लिए कोई पैकेज स्रोत नहीं है 0.12, मैंने .tar.gzफ़ाइलों को नोडज की वेबसाइट के रूप में डाउनलोड किया है , अनपैक किया गया है, लेकिन इसमें कोई इंस्टॉलेशन स्क्रिप्ट नहीं है, फ़ाइलों को मैन्युअल रूप से स्थानांतरित करना या लिंक बनाना वह तरीका नहीं है जो मैं जाना चाहता हूं, मैं क्या कर सकता हूं?

अपडेट करें:

[web01]~> nodejs -v
v0.10.25
[web01]~> apt-get install curl
Reading package lists... Done
Building dependency tree       
Reading state information... Done
curl is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[web01]~> curl -sL https://deb.nodesource.com/setup_4.x | sudo bash -
[web01]~> apt-get install -y nodejs
Reading package lists... Done
Building dependency tree       
Reading state information... Done
nodejs is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
[web01]~> uname -a
Linux web01.example.lab 3.19.0-28-generic #30~14.04.1-Ubuntu SMP Tue Sep 1 09:32:55 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux
[web01]~> 

3
नवीनतम Node.js / MongoDB स्थापित करने का संभव डुप्लिकेट ? नोड स्थापित करने के निर्देशों के लिए उपयोगकर्ता का जवाब देखें। 0.12 ..
कारेल

जवाबों:


13

NodeJS को स्थापित करने का सबसे आसान तरीका आधिकारिक पीपीए का उपयोग करना है (जिसमें नवीनतम संस्करण शामिल हैं (इस संपादन के समय 8.X)।

एक टर्मिनल खोलें ( Ctrl+ Alt+ T) और चलाएँ:

  1. वर्तमान NodeJS स्थापना निकालें

    sudo apt-get purge nodejs*
    
  2. इंस्टॉल curl

    sudo apt-get install curl
    
  3. NodeJS स्थापित करें:

    curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
    sudo apt-get install -y nodejs
    

अगर आपको ०.१२ की आवश्यकता है और ४.१.१ संस्करण की आवश्यकता नहीं है, तो दौड़ें:

  1. NodeJS स्थापित करें:

    curl -sL https://deb.nodesource.com/setup_0.12 | sudo bash -
    sudo apt-get install -y nodejs
    

1
यह मदद नहीं करेगा, प्रश्न में अद्यतन देखें।
एडिक मकोयैन

कृपया मेरा संपादित उत्तर देखें।
hg8

मेरे Ubuntu के डिस्ट्रो नाम को बदलने के बाद ही मेरे लिए काम किया, जो पहले LinuxMint था। जब मैंने पहली बार स्थापित करने का प्रयास किया, तो मुझे त्रुटि मिली ## Your distribution, identified as "petra", is not currently supported, please contact NodeSource at https://github.com/nodesource/distributions/issues if you think this is incorrect or would like your distribution to be considered for support। Distro रिहाई की जानकारी यहां बताए अनुसार बदलकर फिक्स्ड askubuntu.com/questions/115429/...
antongorodezkiy

कमांड के अंत में आपको -Eपहले जोड़ना चाहिए ...bashcurl
स्मार्टमाउस
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.