From d2f2731481143fcc543e17e43d971644827cf5d6 Mon Sep 17 00:00:00 2001 From: Sebastian Pipping Date: Sun, 18 Jun 2023 23:08:17 +0200 Subject: [PATCH] Replace command "pip" with "pip3" --- .github/workflows/main.yml | 4 ++-- docs/contributing.rst | 2 +- docs/installation.rst | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 78290da..6b7e743 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,8 +25,8 @@ jobs: - name: Install project dependencies run: | - pip install --upgrade pip - pip install codecov tox tox-gh-actions + pip3 install --upgrade pip + pip3 install codecov tox tox-gh-actions - name: Run tests with tox run: tox diff --git a/docs/contributing.rst b/docs/contributing.rst index a22236e..cf491ca 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -127,7 +127,7 @@ in this example:: eval "$(pyenv init -)" # Setup your local system tox tooling - pip install tox tox-pyenv + pip3 install tox tox-pyenv # Install supported versions (at time of writing), this does not activate them pyenv install 3.7.5 3.8.0 pypy3.8 diff --git a/docs/installation.rst b/docs/installation.rst index 5be94ab..21693e7 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -4,7 +4,7 @@ Installation VCR.py is a package on `PyPI `__, so you can install with pip:: - pip install vcrpy + pip3 install vcrpy Compatibility ------------- @@ -46,8 +46,8 @@ rebuilding pyyaml. 3. Rebuild pyyaml with libyaml:: - pip uninstall pyyaml - pip --no-cache-dir install pyyaml + pip3 uninstall pyyaml + pip3 --no-cache-dir install pyyaml Upgrade -------