Skip to content

Commit

Permalink
docs: describe the update process
Browse files Browse the repository at this point in the history
Not everybody knows how to update python packages. This is the reason for adding the instructions to the main README.md.
  • Loading branch information
Joris Conijn committed Feb 19, 2022
1 parent 08cabc1 commit 358d4de
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@ current and the destination branch. Then it tries to create a pull request with
You can install the `pull-request-codecommit` tool by running the following command:

```bash
pip install pull_request_codecommit
pip install pull-request-codecommit
```

You can update an existing installation with the following command:

```bash
pip install --upgrade pull-request-codecommit
```

### Installation in venv
Expand All @@ -26,7 +32,7 @@ using the following commands:
```bash
python -m venv .venv
source .venv/bin/activate
pip install pull_request_codecommit
pip install pull-request-codecommit
```

## Configuration
Expand Down

0 comments on commit 358d4de

Please sign in to comment.