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

Z Podręcznik Administratora by OPZ SGU
Przejdź do nawigacji Przejdź do wyszukiwania
(Utworzył nową stronę „<pre> apt-get install build-essential </pre> <pre> apt-get install git </pre> <pre> git clone git://github.com/joyent/node.git </pre> <pre> cd node </pre> <pre> ...”)
 
 
(Nie pokazano 3 pośrednich wersji utworzonych przez tego samego użytkownika)
Linia 2: Linia 2:
apt-get install build-essential
apt-get install build-essential
</pre>
</pre>


<pre>
<pre>
apt-get install git
apt-get install git
</pre>
</pre>


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


Linia 25: Linia 22:


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


Linia 34: Linia 31:
<pre>
<pre>
sh install.sh
sh install.sh
<pre>
</pre>
 
[[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