From b22b39c92b87a05d4abb78ad60edcad5e1185697 Mon Sep 17 00:00:00 2001 From: NaeiKinDus Date: Wed, 10 Jul 2024 00:00:00 +0000 Subject: [PATCH] chore(README): fixed invalid requirements section which referenced the virtualenv package instead of venv --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 9de8e49..ff2ea77 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ thoroughly reviewed it, especially the system hardening and security tweaks that ***Required dependencies*** - Python3.9+, - PIP, -- Virtualenv +- Python3 venv ***Dependencies installed using the `Installation` instructions*** - [Task](https://taskfile.dev/), @@ -34,7 +34,7 @@ thoroughly reviewed it, especially the system hardening and security tweaks that - libcairo2-dev, - libffi-dev, - python3-dev, - - python3-virtualenv + - python3-venv ***Optional, dev-related dependencies*** - Docker @@ -49,7 +49,7 @@ sudo apt install -y \ libcairo2 \ libcairo2-dev \ libffi-dev \ - python3-virtualenv \ + python3-venv \ python3-dev; TASK_VERSION=$(curl -fsSL -XGET https://api.github.com/repos/go-task/task/releases/latest | grep tag_name | tr -d ' ",' | cut -d ':' -f 2) curl -fsSLO https://github.com/go-task/task/releases/download/"${TASK_VERSION}"/task_linux_amd64.deb; @@ -62,7 +62,7 @@ rm task_linux_amd64.deb; # Generate default ansible configuration ./scripts/generate_ansible_config.sh > "${HOME}"/.ansible.cfg -# Setup Python virtualenv +# Setup Python virtual env task venv:setup # Prepare and edit your inventory as needed @@ -80,7 +80,7 @@ All tasks are available in `Taskfile.yml` and are executed at the root of the pr Execute a molecule command, e.g. `task molecule -- converge` to create and populate a test container. #### venv -Execute a command using the Python wrapper that activates the virtualenv, e.g. `task venv -- ` +Execute a command using the Python wrapper that activates the virtual env, e.g. `task venv -- ` #### docker *build*: build all docker images available in `/images`, e.g. `task docker:build`