From 18af7c36a5253c9abc53f00c04bf568865546cd3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?I=C3=B1aki=20Baz=20Castillo?= Date: Fri, 15 Sep 2023 11:16:10 +0200 Subject: [PATCH] Fix README --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9d009ab..e0a63bb 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Once the requirements above are satisfied, install **mediasoup-client-aiortc** w $ npm install --save mediasoup-client-aiortc ``` -The "postinstall" script in `package.json` will install the Python libraries (including **aiortc**) by using `pip` command. If such a command is not in the `PATH` or has a different name in your system, you can override its location by setting the `PIP` environment variable: +The "postinstall" script in `package.json` will install the Python libraries (including **aiortc**) by using `pip3` command. If such a command is not in the `PATH` or has a different name in your system, you can override its location by setting the `PIP` environment variable: ```bash $ PIP=/home/me/bin/pip npm install --save mediasoup-client-aiortc @@ -278,12 +278,16 @@ As a workaround: ``` 3. Make `PIP` environment variable point to `pip@3.10`: ```bash - export PIP=pip.10 + export PIP=pip3.10 ``` 4. Install deps: ```bash npm ci ``` +5. Run tests: + ```bash + npm test + ``` ## Caveats