Skip to content

Commit

Permalink
Merge pull request #255 from andrew-aiken/recommend-python-virtual-env
Browse files Browse the repository at this point in the history
Recommend Python Virtual Environment & Update Modules
  • Loading branch information
TeneBrae93 authored Jun 12, 2024
2 parents 6e61938 + 34f4239 commit f2a9dce
Show file tree
Hide file tree
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
Expand Up @@ -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
Expand Up @@ -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
```
Expand Down
10 changes: 5 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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 f2a9dce

Please sign in to comment.