-
-
Notifications
You must be signed in to change notification settings - Fork 35.4k
doc: add note about pip being required #40669
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
Clean install requires pip to make coverage but instructions didn't mention it.
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -235,22 +235,22 @@ The Node.js project supports Python >= 3 for building and testing. | |
|
|
||
| * `gcc` and `g++` >= 8.3 or newer | ||
| * GNU Make 3.81 or newer | ||
| * Python 3.6, 3.7, 3.8, 3.9, or 3.10 (see note above) | ||
| * Python 3.6, 3.7, 3.8, 3.9, or 3.10 (see note above) with pip installed | ||
|
|
||
| Installation via Linux package manager can be achieved with: | ||
|
|
||
| * Ubuntu, Debian: `sudo apt-get install python3 g++ make` | ||
| * Fedora: `sudo dnf install python3 gcc-c++ make` | ||
| * CentOS and RHEL: `sudo yum install python3 gcc-c++ make` | ||
| * OpenSUSE: `sudo zypper install python3 gcc-c++ make` | ||
| * Arch Linux, Manjaro: `sudo pacman -S python gcc make` | ||
| * Ubuntu, Debian: `sudo apt-get install python3 python3-pip g++ make` | ||
| * Fedora: `sudo dnf install python3 python3-pip gcc-c++ make` | ||
| * CentOS and RHEL: `sudo yum install python3 python3-pip gcc-c++ make` | ||
| * OpenSUSE: `sudo zypper install python3 python3-pip gcc-c++ make` | ||
| * Arch Linux, Manjaro: `sudo pacman -S python python-pip gcc make` | ||
|
|
||
| FreeBSD and OpenBSD users may also need to install `libexecinfo`. | ||
|
|
||
| #### macOS prerequisites | ||
|
|
||
| * Xcode Command Line Tools >= 11 for macOS | ||
| * Python 3.6, 3.7, 3.8, 3.9, or 3.10 (see note above) | ||
| * Python 3.6, 3.7, 3.8, 3.9, or 3.10 (see note above) with pip installed | ||
|
Contributor
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. This and the package references above should be changed as well.
Contributor
Author
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. I've updated this and moved the pip install packages to the end of package list (so it's slightly easier to remove them if someone doesn't want them). It feels that it's better to keep them together than make the install instructions longer with 2 versions, but please let me know if you disagree. |
||
|
|
||
| macOS users can install the `Xcode Command Line Tools` by running | ||
| `xcode-select --install`. Alternatively, if you already have the full Xcode | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.