From f408126002438968a83625881d9be31b144a3a87 Mon Sep 17 00:00:00 2001 From: Lena Garber Date: Tue, 14 Feb 2023 13:04:57 -0500 Subject: [PATCH] Add dynamic pip install URL --- README.md | 4 ++-- template/README.template.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 54c563d1..8614430a 100644 --- a/README.md +++ b/README.md @@ -104,11 +104,11 @@ You can install the Linode collection with the Ansible Galaxy CLI: ansible-galaxy collection install linode.cloud ``` -The python module dependencies are not installed by `ansible-galaxy`. They can +The Python module dependencies are not installed by `ansible-galaxy`. They can be manually installed using pip: ```shell -pip install -r requirements.txt +pip install -r https://raw.githubusercontent.com/linode/ansible_linode/main/requirements.txt ``` ## Usage diff --git a/template/README.template.md b/template/README.template.md index 10efa386..67a2af9d 100644 --- a/template/README.template.md +++ b/template/README.template.md @@ -61,11 +61,11 @@ You can install the Linode collection with the Ansible Galaxy CLI: ansible-galaxy collection install linode.cloud ``` -The python module dependencies are not installed by `ansible-galaxy`. They can +The Python module dependencies are not installed by `ansible-galaxy`. They can be manually installed using pip: ```shell -pip install -r requirements.txt +pip install -r https://raw.githubusercontent.com/linode/ansible_linode/{{collection_version}}/requirements.txt ``` ## Usage