-
-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
6 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 `[email protected]`: | ||
```bash | ||
export PIP=pip.10 | ||
export PIP=pip3.10 | ||
``` | ||
4. Install deps: | ||
```bash | ||
npm ci | ||
``` | ||
5. Run tests: | ||
```bash | ||
npm test | ||
``` | ||
|
||
|
||
## Caveats | ||
|