Skip to content

Commit ea52729

Browse files
committed
doc: add note about pip being required
Clean install requires pip to make coverage but instructions didn't mention it.
1 parent ebd53d7 commit ea52729

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

BUILDING.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -235,22 +235,22 @@ The Node.js project supports Python >= 3 for building and testing.
235235

236236
* `gcc` and `g++` >= 8.3 or newer
237237
* GNU Make 3.81 or newer
238-
* Python 3.6, 3.7, 3.8, 3.9, or 3.10 (see note above)
238+
* Python 3.6, 3.7, 3.8, 3.9, or 3.10 (see note above) with pip installed
239239

240240
Installation via Linux package manager can be achieved with:
241241

242-
* Ubuntu, Debian: `sudo apt-get install python3 g++ make`
243-
* Fedora: `sudo dnf install python3 gcc-c++ make`
244-
* CentOS and RHEL: `sudo yum install python3 gcc-c++ make`
245-
* OpenSUSE: `sudo zypper install python3 gcc-c++ make`
246-
* Arch Linux, Manjaro: `sudo pacman -S python gcc make`
242+
* Ubuntu, Debian: `sudo apt-get install python3 python3-pip g++ make`
243+
* Fedora: `sudo dnf install python3 python3-pip gcc-c++ make`
244+
* CentOS and RHEL: `sudo yum install python3 python3-pip gcc-c++ make`
245+
* OpenSUSE: `sudo zypper install python3 python3-pip gcc-c++ make`
246+
* Arch Linux, Manjaro: `sudo pacman -S python python-pip gcc make`
247247

248248
FreeBSD and OpenBSD users may also need to install `libexecinfo`.
249249

250250
#### macOS prerequisites
251251

252252
* Xcode Command Line Tools >= 11 for macOS
253-
* Python 3.6, 3.7, 3.8, 3.9, or 3.10 (see note above)
253+
* Python 3.6, 3.7, 3.8, 3.9, or 3.10 (see note above) with pip installed
254254

255255
macOS users can install the `Xcode Command Line Tools` by running
256256
`xcode-select --install`. Alternatively, if you already have the full Xcode

0 commit comments

Comments
 (0)