This project is part of the Software Engineering and Project Management course at Uppsala University. It focuses on developing the user interface (UI) for a Swedish learning game designed to help users learn Swedish interactively. This repository contains the code related to the Swedish Learning Game application, where users can practice Swedish through various levels and challenges.
Before setting up the application, ensure you have the relevant packages installed.
To verify if Python is installed, run the following command:
- MacOS
python3 --version- Linux(Ubuntu)
python3 --version- Windows
python --versionor
python3 --versionIf Python is not installed, install it using the following:
- MacOS
brew install python- Linux(Ubuntu)
sudo apt update
sudo apt install python3 -y- Windows Download and install it from Python's official website.
To verify if pip is installed, run the following command:
- MacOS
pip3 --versionor
python3 -m pip --version- Linux(Ubuntu)
pip3 --versionor
python3 -m pip --version- Windows
pip --version or
pip3 --version If pip is not installed, install it using:
- MacOS
python3 -m ensurepip --default-pip- Linux(Ubuntu)
sudo apt update
sudo apt install python3-pip -y- Windows
python -m ensurepip --default-pipTo verify if tkinter is installed, run the following command:
- MacOS
python3 -m tkinter- Linux(Ubuntu)
python3 -m tkinter- Windows
python -m tkinterIf not installed, install it using:
- MacOS
brew install python-tk- Linux(Ubuntu)
sudo apt update
sudo apt install python3-tk -y- Windows For Windows, Tkinter comes pre-installed with standard Python distributions.
git clone https://github.com/majanyberg/SEPM.gitpip install -r requirements.txtpython scripts/interface.py