My solutions to the Natas wargame on OverTheWire written in Python. The only external library that I have used is Requests. I wrote these in Python 3.6.
I recommend using a virtual environment:
Linux:
python3 -m venv venv
. venv/bin/activate
pip install requestsOr on Windows in PowerShell:
py -m venv venv
.\venv\Scripts\Activate.ps1
pip install requestsYou may run into issues depending on how Python is installed in your environment. Check out the Installing packages using pip and virtual environments guide.
When you're finished with your virtual environment, deactivate with the deactivate command.