1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

Replace command "pip" with "pip3"

This commit is contained in:
Sebastian Pipping
2023-06-18 23:08:17 +02:00
parent b2a895cb89
commit d2f2731481
3 changed files with 6 additions and 6 deletions

View File

@@ -25,8 +25,8 @@ jobs:
- name: Install project dependencies - name: Install project dependencies
run: | run: |
pip install --upgrade pip pip3 install --upgrade pip
pip install codecov tox tox-gh-actions pip3 install codecov tox tox-gh-actions
- name: Run tests with tox - name: Run tests with tox
run: tox run: tox

View File

@@ -127,7 +127,7 @@ in this example::
eval "$(pyenv init -)" eval "$(pyenv init -)"
# Setup your local system tox tooling # 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 # Install supported versions (at time of writing), this does not activate them
pyenv install 3.7.5 3.8.0 pypy3.8 pyenv install 3.7.5 3.8.0 pypy3.8

View File

@@ -4,7 +4,7 @@ Installation
VCR.py is a package on `PyPI <https://pypi.python.org>`__, so you can install VCR.py is a package on `PyPI <https://pypi.python.org>`__, so you can install
with pip:: with pip::
pip install vcrpy pip3 install vcrpy
Compatibility Compatibility
------------- -------------
@@ -46,8 +46,8 @@ rebuilding pyyaml.
3. Rebuild pyyaml with libyaml:: 3. Rebuild pyyaml with libyaml::
pip uninstall pyyaml pip3 uninstall pyyaml
pip --no-cache-dir install pyyaml pip3 --no-cache-dir install pyyaml
Upgrade Upgrade
------- -------