Skip to content

Commit

Permalink
Explain why pipx, but allow pip too
Browse files Browse the repository at this point in the history
As suggested by Lecrapouille and cgestes
in your-tools#332, your-tools#366, your-tools#343.
  • Loading branch information
gdubicki committed Nov 20, 2022
1 parent 44f7efd commit f33e97e
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,17 @@ It can be [seen in action on asciinema.org](https://asciinema.org/a/131625).

## Installation

The recommended way to install `tsrc` is to use [pipx](https://pipxproject.github.io/pipx/).
Make sure to have Python **3.7** or later installed.

* Make sure to have Python **3.7** or later installed.
* Install `pipx`
* Run `pipx install tsrc`.
The **recommended** way to install `tsrc` is to use [pipx](https://pipxproject.github.io/pipx/), because it creates an isolated environment for the app:
```shell
pipx install tsrc
```

If you know what you are doing, you can also use plain `pip`:
```shell
pip install tsrc
```

## Usage Example

Expand Down

0 comments on commit f33e97e

Please sign in to comment.