Skip to content

Commit

Permalink
docs: k.i.s.s approach to python deps
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosmmatos committed Oct 25, 2024
1 parent b7671d8 commit afaa274
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,18 +128,15 @@ ansible-galaxy collection install -r requirements.yml

### Python dependencies

The Python module dependencies are not automatically handled by `ansible-galaxy`. To manually install these dependencies, you have the following options:
The Python module dependencies are not automatically handled by `ansible-galaxy`. To install these dependencies, you have the following options:

1. Install the CrowdStrike FalconPy package directly:

```terminal
pip install crowdstrike-falconpy
pip install crowdstrike-falconpy aiohttp
```

> [!IMPORTANT]
> If you intend to use Event-Driven Ansible (EDA), the `aiohttp` package should also be installed.
2. Alternatively, if you clone the repository you can utilize the `requirements.txt` file to install all required packages:
2. Alternatively, if you clone the repository, you can utilize the `requirements.txt` file to install all required packages:

```terminal
pip install -r requirements.txt
Expand Down

0 comments on commit afaa274

Please sign in to comment.