Skip to content

Commit 1dd595a

Browse files
author
RJ Lohan
authored
Updated pip to pip3 (#205)
* Updates pip to pip3
1 parent dc3d50b commit 1dd595a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Usage
1010
If you are using this package to build resource providers for CloudFormation, install the (CloudFormation CLI)[https://github.com/aws-cloudformation/aws-cloudformation-rpdk] and the (CloudFormation CLI Java Plugin)[https://github.com/aws-cloudformation/aws-cloudformation-rpdk-java-plugin]
1111

1212
```
13-
pip install cloudformation-cli
14-
pip install cloudformation-cli-java-plugin
13+
pip3 install cloudformation-cli
14+
pip3 install cloudformation-cli-java-plugin
1515
```
1616

1717
Refer to the documentation for the [CloudFormation CLI](https://github.com/aws-cloudformation/aws-cloudformation-rpdk) for usage instructions.
@@ -22,7 +22,7 @@ Development
2222
First, you will need to install the (CloudFormation CLI)[https://github.com/aws-cloudformation/aws-cloudformation-rpdk], as it is a required dependency:
2323

2424
```
25-
pip install cloudformation-cli
25+
pip3 install cloudformation-cli
2626
```
2727

2828
For changes to the plugin, a Python virtual environment is recommended.
@@ -31,7 +31,7 @@ For changes to the plugin, a Python virtual environment is recommended.
3131
python3 -m venv env
3232
source env/bin/activate
3333
# assuming cloudformation-cli has already been cloned/downloaded
34-
pip install -e .
34+
pip3 install -e .
3535
pre-commit install
3636
```
3737

README.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ Plugin)[https://github.com/aws-cloudformation/aws-cloudformation-rpdk-java-plugi
1818

1919
.. code-block:: bash
2020
21-
pip install cloudformation-cli
22-
pip install cloudformation-cli-java-plugin
21+
pip3 install cloudformation-cli
22+
pip3 install cloudformation-cli-java-plugin
2323
2424
Refer to the documentation for the `CloudFormation CLI`_ for usage
2525
instructions.
@@ -33,7 +33,7 @@ it is a required dependency:
3333

3434
.. code-block:: bash
3535
36-
pip install cloudformation-cli
36+
pip3 install cloudformation-cli
3737
3838
For changes to the plugin, a Python virtual environment is recommended.
3939

@@ -42,7 +42,7 @@ For changes to the plugin, a Python virtual environment is recommended.
4242
python3 -m venv env
4343
source env/bin/activate
4444
# assuming cloudformation-cli has already been cloned/downloaded
45-
pip install -e .
45+
pip3 install -e .
4646
pre-commit install
4747
4848
Linting and running unit tests is done via `pre-commit`_, and so is

0 commit comments

Comments
 (0)