chore(README): fixed invalid requirements section which referenced the virtualenv package instead of venv
This commit is contained in:
parent
2d4a8de985
commit
b22b39c92b
1 changed files with 5 additions and 5 deletions
10
README.md
10
README.md
|
@ -22,7 +22,7 @@ thoroughly reviewed it, especially the system hardening and security tweaks that
|
||||||
***Required dependencies***
|
***Required dependencies***
|
||||||
- Python3.9+,
|
- Python3.9+,
|
||||||
- PIP,
|
- PIP,
|
||||||
- Virtualenv
|
- Python3 venv
|
||||||
|
|
||||||
***Dependencies installed using the `Installation` instructions***
|
***Dependencies installed using the `Installation` instructions***
|
||||||
- [Task](https://taskfile.dev/),
|
- [Task](https://taskfile.dev/),
|
||||||
|
@ -34,7 +34,7 @@ thoroughly reviewed it, especially the system hardening and security tweaks that
|
||||||
- libcairo2-dev,
|
- libcairo2-dev,
|
||||||
- libffi-dev,
|
- libffi-dev,
|
||||||
- python3-dev,
|
- python3-dev,
|
||||||
- python3-virtualenv
|
- python3-venv
|
||||||
|
|
||||||
***Optional, dev-related dependencies***
|
***Optional, dev-related dependencies***
|
||||||
- Docker
|
- Docker
|
||||||
|
@ -49,7 +49,7 @@ sudo apt install -y \
|
||||||
libcairo2 \
|
libcairo2 \
|
||||||
libcairo2-dev \
|
libcairo2-dev \
|
||||||
libffi-dev \
|
libffi-dev \
|
||||||
python3-virtualenv \
|
python3-venv \
|
||||||
python3-dev;
|
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)
|
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;
|
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
|
# Generate default ansible configuration
|
||||||
./scripts/generate_ansible_config.sh > "${HOME}"/.ansible.cfg
|
./scripts/generate_ansible_config.sh > "${HOME}"/.ansible.cfg
|
||||||
|
|
||||||
# Setup Python virtualenv
|
# Setup Python virtual env
|
||||||
task venv:setup
|
task venv:setup
|
||||||
|
|
||||||
# Prepare and edit your inventory as needed
|
# 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.
|
Execute a molecule command, e.g. `task molecule -- converge` to create and populate a test container.
|
||||||
|
|
||||||
#### venv
|
#### 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
|
#### docker
|
||||||
*build*: build all docker images available in `/images`, e.g. `task docker:build`
|
*build*: build all docker images available in `/images`, e.g. `task docker:build`
|
||||||
|
|
Loading…
Add table
Reference in a new issue