Jak zainstalować node.js w debianie ?: Różnice pomiędzy wersjami

Z Podręcznik Administratora by OPZ SGU
Przejdź do nawigacji Przejdź do wyszukiwania
 
(Nie pokazano 1 pośredniej wersji utworzonej przez tego samego użytkownika)
Linia 8: Linia 8:


<pre>
<pre>
git clone git://github.com/joyent/node.git
git clone https://github.com/nodejs/node.git
</pre>
</pre>


Linia 22: Linia 22:


<pre>
<pre>
  wget --no-check-certificate  http://npmjs.org/install.sh
  wget https://npmjs.org/install.sh
</pre>
</pre>


Linia 31: Linia 31:
<pre>
<pre>
sh install.sh
sh install.sh
<pre>
</pre>


[[Category:Ubuntu]]
[[Category:Ubuntu]]

Aktualna wersja na dzień 17:30, 31 mar 2018

apt-get install build-essential
apt-get install git
git clone https://github.com/nodejs/node.git
cd node
./configure
make
make install
 wget https://npmjs.org/install.sh
apt-get install curl
sh install.sh