From 05ba8f78fe7d22456a9904880346b2a47f269fc7 Mon Sep 17 00:00:00 2001 From: pyth0n1c <87383215+pyth0n1c@users.noreply.github.com> Date: Tue, 25 Jul 2023 13:48:04 -0700 Subject: [PATCH] Update README.md change installation instructions to recommend pip --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 28920a33..2acedd6a 100644 --- a/README.md +++ b/README.md @@ -75,14 +75,14 @@ Testing is run using [GitHub Hosted Runners](https://docs.github.com/en/actions/ **Because contentctl uses a large number of dependencies, it's recommended to install contentctl in a virtual environment. -The instructions below use "poetry" and follow this recommendation. Poetry will automatically create a new virtual environment for you. +The instructions below using "poetry" ALSO follow this recommendation. Poetry will automatically create a new virtual environment for you. It is typically recommended to install poetry to the Global Python Environment.** -#### Install via pip (coming soon): +#### Install via pip (recommended): ``` python3.9 -m venv .venv source .venv/bin/activate -pip install splunk-contentctl +pip install contentctl ``` #### From Source (advanced)