As I run this peice of code using node a.js:
var sys = require('sys');
sys.puts('Hello, World');
it gives an error
axconfig: port 1 not active axconfig: port 2 not active
|
As I run this peice of code using node a.js:
it gives an error
| ||||
feedback
|
|
Warning: This is old but it might still work. You didn't install node.js but the package node (that contains some other unrelated software) for your linux distro. You can install node.js two ways: Using git or download the version file, I recommend git to keep up with the lastest version. First you need git and a compiler, here is how you install them on debian/ubuntu (this depends on your package manager):
Then go to a folder where the "node" repository will be placed, something like
Then enter the node directory, configure it and build it.
Everything should go well. Before installing node you can optionally run the tests to check for any problems:
You can finally install node, this allows you to run the node command anywhere in the system and the javascript libraries to be installed.
...and we are done.
You can test those lines of code using node-repl (node's REPL, think "interactive interpreter"), just type | |||||||||||||||
feedback
|
this problem no where related to nodejs. Download nodejs from http://nodejs.org/ or using git from https://github.com/joyent/node.git but make sure you install the stable branch(0.4.x). For installing please follow the README.md Do not install from sudo apt-get install node. This will install radio package. this radio package requires axports to be active, which is not linked with nodejs So uninstall node from sudo apt-get remove node After installing then set the environment variables echo PATH=$PTATH:/home/user/pathtonode/ Thanks, Munipratap. | ||||
|
feedback
|