On Mar 20, 2012, at 1:31 PM, Alexey Petrushin wrote: > As far as I know there's currently 2 ways to install node on mac: > > 1. As `brew install node`. It doesn't require sudo, but npm sometimes doesn't > work as expected (can't find some packages). > 2. As installer from nodejs.org. It works but requires sudo. Maybe there's > any way to install it without sudo? > > Thanks.
Yes, there's no need to install it as su, I always do a `./configure --prefix=~/I_put_binarios_here_you_can_put_any_other_folder_you_want`, then `make install`, and don't forget to add that path to your PATH environment variable by editing the ~/.profile file: `pico ~/.profile` -- Jorge. -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
