From 73e435d5ecb4e64ba0f2a8bee68f2482bcf4b4d5 Mon Sep 17 00:00:00 2001 From: Joshua Higgins Date: Thu, 26 Mar 2026 23:15:10 -0400 Subject: [PATCH] Simplify installation instructions for dependencies --- README.md | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b16a276..cd38fb7 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,7 @@ Download the [`gameloop.py`](https://github.com/joshuafhiggins/connect4-moderato In order to run your AI, you'll need: - Python 3 -- `pip install websockets` (Windows) or `pip3 install websockets` (Linux/macOS) -- `pip install pip-system-certs` (Windows) or `pip3 install pip-system-certs` (Linux/macOS) -- `pip install wakepy` (Windows) or `pip3 install wakepy` (Linux/macOS) +- `pip install websockets pip-system-certs wakepy` (Windows) or `pip3 install websockets pip-system-certs wakepy` (Linux/macOS) To run the example, run `python gameloop.py` (Windows) or `python3 gameloop.py` (Linux/macOS). @@ -35,4 +33,4 @@ A JavaScript debug client that takes raw text as input and prints responses is p - `npm i` - `node debug_client.js` -I also apologize in advance for the code you'll go on to read. \ No newline at end of file +I also apologize in advance for the code you'll go on to read.