Commit 1c648da

bryfry <bryon.fryer@gmail.com>
2020-03-18 10:47:08
found the 3.9 is not working with ansible
1 parent 4c5eb47
Changed files (2)
main.yml
@@ -0,0 +1,14 @@
+---
+- hosts: localhost
+  gather_facts: True
+  tasks:
+   - name: install apt packages
+     apt: 
+       update_cache: True
+       state: latest
+       pkg:
+        - vim
+        - tmux 
+        - htop
+     become: True
+  
README.md
@@ -17,13 +17,13 @@ sudo apt update
 sudo sudo apt install -y software-properties-common
 sudo add-apt-repository -y ppa:deadsnakes/ppa
 sudo apt update
-sudo apt install -y python3.9 python3.9-venv python3.9-dev libffi-dev git gcc
+sudo apt install -y python3.8 python3.8-venv python3.8-dev libffi-dev git gcc python3-apt
 mkdir git
 cd git
 git clone git@github.com:bryfry/trustme.click.git
 cd trustme.click
-python3.9 -m venv tmc_venv
+python3.8 -m venv tmc_venv
 source tmc_venv/bin/activate
-python3.9 -m pip install --upgrade pip wheel
-python3.9 -m pip install ansible
+python3.8 -m pip install --upgrade pip wheel
+python3.8 -m pip install ansible
 ```