You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,8 +10,8 @@ Usage
10
10
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]
11
11
12
12
```
13
-
pip install cloudformation-cli
14
-
pip install cloudformation-cli-java-plugin
13
+
pip3 install cloudformation-cli
14
+
pip3 install cloudformation-cli-java-plugin
15
15
```
16
16
17
17
Refer to the documentation for the [CloudFormation CLI](https://github.com/aws-cloudformation/aws-cloudformation-rpdk) for usage instructions.
@@ -22,7 +22,7 @@ Development
22
22
First, you will need to install the (CloudFormation CLI)[https://github.com/aws-cloudformation/aws-cloudformation-rpdk], as it is a required dependency:
23
23
24
24
```
25
-
pip install cloudformation-cli
25
+
pip3 install cloudformation-cli
26
26
```
27
27
28
28
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.
31
31
python3 -m venv env
32
32
source env/bin/activate
33
33
# assuming cloudformation-cli has already been cloned/downloaded
0 commit comments