A cool, very on fleek, dapper exercise desktop program. The exercise program will assist any potential users in maximizing their workout routine. They will be able to utilize the program in order to create the best and most efficient workout routine. They will have access to use a timer to keep track of their time spent working out. Users will also be able to find exercises that they can perform in order to achieve their ideal body physique. If they do not know how to perform an exercise, a tutorial will be provided for them. If multiple users ever wanted to use the program with multiple 'profiles', where settings will be saved for separate profiles. Using our program, the most skinniest person can turn themselves into the most jacked human being ever, making someone like Sam Sulek and Chris Bumstead jealous of your new body.
- Andrew Hills (Leader, coder, project developer, amateur weightlifter)
- Preston Thomas (Project manager, coder, project developer, professional weightlifter, documenter proof-reader)
- Chai Callow (Documenter, coder, project developer)
- Visit the official Python website: https://www.python.org/downloads/.
- Download the appropriate installer for your operating system (Windows, MacOS).
- Run the installer and ensure that the "Add Python to PATH" option is selected during installation.
- Verify the installation by opening a terminal and typing
python3 --version
orpython --version
.
tkinter
:- For most systems,
tkinter
comes pre-installed with Python. Verify by runningpython3 -m tkinter
in the terminal. If a window appears,tkinter
is installed. - If not installed, follow the appropriate steps for your system:
- MacOS: Ensure you have the latest version of Python from python.org.
- For newer MacBooks, you can use Homebrew to install Python by running:
brew install python
- Windows: Reinstall Python and ensure
tkinter
is included.
- MacOS: Ensure you have the latest version of Python from python.org.
- For most systems,
customtkinter
:- Install via pip by running
pip install customtkinter
.- If on Mac, try
brew install customtkinter
.
- If on Mac, try
- Install via pip by running
- Note for installation:
- If you are getting messages saying something called
pip
is not installed on a Mac system, try installing it in the terminal using:
brew install pip
- Or try:
python -m ensurepip --upgrade
- If you are getting messages saying something called
- Navigate to your terminal and type:
git clone https://github.com/KingAnd7/gvsu-cis350-Machine-Learners/tree/main
- Use the
cd
command to navigate to thesrc
folder. It is most likely in themain
folder if you are cloning this for the first time. For example:cd gvsu-cis350-Machine-Learners/main/src
- Type the following command in the terminal:
python3 main.py
- If
python3
is not recognized, you can try:python main.py
To read the manual on how to use the program, navigate to the Instructions
tab on the left side and click on it. It shall provide you with a message box on how to use the program.