Amanda G
Amanda G

Reputation: 1981

installing nodejs without dependencies

Hi i am having a ubuntu server which will not have any internet connection. I need to install node and all npm related packages to it.I have the source file of nodejs and all the node modules. Is there any way to install the build essential package and the python dependencies without using the below code

sudo apt-get update
sudo apt-get install build-essential -y
sudo apt-get install python libssl-dev -y 

These commands actually hit a external url which will be impossible since there is no internet connection.I am stuck here.Any help will be much helpful.

Upvotes: 2

Views: 2294

Answers (1)

legacy
legacy

Reputation: 241

$tar -zxf node-v0.10.5.tar.gz 
$cd node-v0.10.5
$./configure && make && sudo make install

just download node first from http://nodejs.org/download/

each npm package can stand alone, so by using npm on a machine that has a connection, you can then move the node_modules file with your modules to the new machine.

Upvotes: 3

Related Questions