Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Recommend Python Virtual Environment & Update Modules #255

Merged
Merged
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
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