Skip to content

Commit 2f402d6

Browse files
committed
MAINT: Update install instructions to use a venv
Updating instructions to use a venv to ensure compatability with later Ubuntu OS versions.
1 parent f2382b9 commit 2f402d6

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

chatops_deployment/docs/INSTALL.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,14 @@ Machine requirements:
5151
5252
#### Setting up localhost:
5353
54-
1. Install Ansible (preferably into a virtual environment) and collections
54+
1. Install Ansible and collections
5555
```shell
56-
# Using pip or another package manager
57-
pip install ansible
56+
# Install venv and Ansible
57+
apt install python3-venv ansible
58+
59+
# Create a virtual environment
60+
python3 -m venv venv
61+
source venv/bin/activate
5862
5963
# Install collections using Ansible Galaxy
6064
ansible-galaxy install -r requirements.yml

0 commit comments

Comments
 (0)