-
Notifications
You must be signed in to change notification settings - Fork 30.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
tools: add Boxstarter script #17046
tools: add Boxstarter script #17046
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,20 @@ get-boxstarter -Force | |
Install-BoxstarterPackage https://raw.githubusercontent.com/nodejs/node/master/tools/bootstrap/windows_boxstarter -DisableReboots | ||
``` | ||
|
||
## Linux | ||
|
||
For building Node.js on Linux, following packets are required (note, that this | ||
can vary from distribution to distribution): | ||
* `git-core` | ||
* `python` | ||
* `gcc-c++` or `g++` | ||
* `make` | ||
|
||
To bootstrap Node.js on Linux, run in terminal: | ||
* OpenSUSE: `sudo zypper install git-core python gcc-c++ make` | ||
* Fedora: `sudo dnf install git-core python gcc-c++ make` | ||
* Ubuntu, Debian: `sudo apt-get install git-core python g++ make` | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does git-core work? From the website it seems like it should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For macOS I'm pretty sure it's just: xcode-select --install # Installs git, make, and clang
|
||
[Boxstarter]: http://boxstarter.org/ | ||
[Boxstarter WebLauncher]: http://boxstarter.org/WebLauncher | ||
[Chocolatey]: https://chocolatey.org/ | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should
packets
bepackages
?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes