chore(README): fixed invalid requirements section which referenced the virtualenv package instead of venv

This commit is contained in:
NaeiKinDus 2024-07-10 00:00:00 +00:00
parent 2d4a8de985
commit b22b39c92b

View file

@ -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`