mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-04 19:21:51 +00:00
a5378b58f7
Co-authored-by: Pepe Fagoaga <pepe@prowler.com>
18 lines
440 B
Bash
18 lines
440 B
Bash
#!/bin/bash
|
|
|
|
# Install system dependencies
|
|
sudo yum -y install openssl-devel bzip2-devel libffi-devel gcc
|
|
# Upgrade to Python 3.9
|
|
cd /tmp && wget https://www.python.org/ftp/python/3.9.13/Python-3.9.13.tgz
|
|
tar zxf Python-3.9.13.tgz
|
|
cd Python-3.9.13/ || exit
|
|
./configure --enable-optimizations
|
|
sudo make altinstall
|
|
python3.9 --version
|
|
# Install Prowler
|
|
cd ~ || exit
|
|
python3.9 -m pip install prowler-cloud
|
|
prowler -v
|
|
# Run Prowler
|
|
prowler aws
|