Skip to content

Commit 7ac9f9d

Browse files
committed
docs: Changes: pip install --user
1 parent d4a6078 commit 7ac9f9d

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

CHANGES

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ This will be the last Python 2.7 release of tmuxp. Bug fixes for python
294294

295295
```{code-block} sh
296296
297-
$ pip install ipdb
297+
$ pip install --user ipdb
298298
$ env PYTHONBREAKPOINT=ipdb.set_trace tmuxp shell
299299
300300
```

docs/cli.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,9 +80,8 @@ compatible debuggers, for instance [ipdb][ipdb]:
8080
8181
```{code-block} sh
8282
83-
$ pip install ipdb
83+
$ pip install --user ipdb
8484
$ env PYTHONBREAKPOINT=ipdb.set_trace tmuxp shell
85-
8685
```
8786

8887
You can also pass in python code directly, similar to `python -c`, do

docs/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ Assure you have at least tmux **>= 1.8** and python **>= 2.6**.
88

99
```{code-block} bash
1010
11-
$ pip install tmuxp
11+
$ pip install --user tmuxp
1212
1313
```
1414

1515
You can upgrade to the latest release with:
1616

1717
```{code-block} bash
1818
19-
$ pip install tmuxp -U
19+
$ pip install --user tmuxp -U
2020
2121
```
2222

0 commit comments

Comments
 (0)