This bot is coded entirely in Python and attempts to guess the word on NYT's popular game, Wordle
- You can access Wordle here: nytimes.com/games/wordle
Windows users:
- Download the latest release and double-click
WordleBot.exe
MacOS and Linux users:
- See below to install Python, then just download the latest release and run
WordleBot.py
Running Source Code:
- Just run the
main.py
file from the source code root directory.
Wordle Bot requires Python 3.x to run
- Windows: Wordle Bot release comes with an executable file for Windows computers, so no need to install python
- You can download the Python installer at python.org/downloads if you wish to run
WordleBot.py
from the release or runmain.py
from the source code
- You can download the Python installer at python.org/downloads if you wish to run
- MacOS: If you have or had MacOS Monterrey or older, Python should be installed by default
- For those on MacOS Ventura or newer, you can download Python from python.org/downloads/macos
- Linux: Linux users can use their version of the package installer to install python.
- Debian-based Linux Users:
sudo apt-get install python3.10
(Untested) - Arch-based Linux Users:
sudo pacman -S python
- Debian-based Linux Users: