Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ If you want to add your own private commands, you can create a `private_commands
## Installation

Requirements:
- python 3 (3.7.0rc1 is known to work), `pip`, and `virtualenv`
- python 3 (3.10 is known to work), `pip`, and `virtualenv`
- You will also need `jq` (https://stedolan.github.io/jq/) and the library `pyjq` (https://github.com/doloopwhile/pyjq), which require some additional tools installed that will be shown.

On macOS:
Expand All @@ -60,7 +60,7 @@ git clone https://github.com/duo-labs/cloudmapper.git
# Install pre-reqs for pyjq
brew install autoconf automake awscli freetype jq libtool python3
cd cloudmapper/
python3 -m venv ./venv && source venv/bin/activate
python3.10 -m venv ./venv && source venv/bin/activate
pip install --prefer-binary -r requirements.txt
```

Expand All @@ -74,7 +74,7 @@ git clone https://github.com/duo-labs/cloudmapper.git
# You may additionally need "build-essential"
sudo apt-get install autoconf automake libtool python3.7-dev python3-tk jq awscli
cd cloudmapper/
python3 -m venv ./venv && source venv/bin/activate
python3.10 -m venv ./venv && source venv/bin/activate
pip install -r requirements.txt
```

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ platformdirs==2.4.0
policyuniverse==1.4.0.20210819
pycodestyle==2.8.0
pyflakes==2.4.0
pyjq==2.4.0
pyjq==2.6.0
pylint==2.11.1
pyparsing==3.0.4
python-dateutil==2.8.2
Expand Down