From 12ee1e2bc8a92729898db6d1d70b5a9606994e99 Mon Sep 17 00:00:00 2001 From: "Glenn K. Lockwood" Date: Sat, 27 Jun 2020 10:50:11 -0700 Subject: [PATCH] update readme to follow best practices for python >=3.5 --- README.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 29940d5..fdd42e6 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,14 @@ You will need ansible installed on the Raspberry Pi being configured. This playbook relies on Ansible 2.8 or newer, which means you can no longer use `sudo apt-get install ansible`. Instead, you must - $ sudo pip install ansible + $ python3 -m venv ansible_env + + $ source ./ansible_env/bin/activate + + (ansible) $ which pip + /home/pi/src/git/rpi-ansible/ansible/bin/pip + + (ansible) $ pip install ansible ## Configuration