Skip to content

Commit

Permalink
Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
ibc committed Sep 15, 2023
1 parent 01d700e commit 18af7c3
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 18af7c3

Please sign in to comment.