Skip to content

Commit

Permalink
Recommend python virtual env & update packages
Browse files Browse the repository at this point in the history
andrew-aiken committed Apr 4, 2024
1 parent 4417f4d commit 34f4239
Showing 3 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -20,3 +20,6 @@ trash/
# Editors
.idea
.sw[a-z]

# Python virtual environment
.venv
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -52,6 +52,8 @@ To install CloudGoat, make sure your system meets the requirements above, and th
```
git clone https://github.com/RhinoSecurityLabs/cloudgoat.git
cd cloudgoat
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r ./requirements.txt
chmod +x cloudgoat.py
```
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -2,8 +2,8 @@
# black==19.3b0
# flake8==3.7.7

argcomplete==1.10.0
PyYAML==6.0.1
boto3==1.18.1 # The ecs_takeover scenario assumes boto3 is available
requests==2.26.0
sqlite-utils==3.17
argcomplete~=3.2.3
PyYAML~=6.0.1
boto3~=1.34.77 # The ecs_takeover scenario assumes boto3 is available
requests~=2.31.0
sqlite-utils~=3.36

0 comments on commit 34f4239

Please sign in to comment.