This project uses Tkinter for the GUI and Matplotlib with NumPy for plotting.
-
Clone or download this repository.
-
Make sure you have Python installed.
Tkinter is included with most standard Python installations.On some Linux distributions :
sudo apt-get install python3-tkOn Mac OS X :
brew install python-tk brew install tcl-tk env PATH="/usr/local/opt/tcl-tk/bin:$PATH" \ LDFLAGS="-L/usr/local/opt/tcl-tk/lib" \ CPPFLAGS="-I/usr/local/opt/tcl-tk/include" \ PKG_CONFIG_PATH="/usr/local/opt/tcl-tk/lib/pkgconfig" \ pyenv install 3.12.5 -
Create and activate a virtual environment (recommended).
On macOS/Linux:
python3 -m venv venv source venv/bin/activate pip install --upgrade pip pip install -r requirements.txt python -m tkinterOn Windows:
python -m venv venv venv\Scripts\activate pip install --upgrade pip pip install -r requirements.txt python -m tkinter