Skip to content

Latest commit

 

History

History
62 lines (40 loc) · 1.27 KB

README.md

File metadata and controls

62 lines (40 loc) · 1.27 KB

Software Technology Project 2024

Software Installation

There are two ways to install and run the app:

  • Cloning the repository and running the Docker container.
  • Cloning the repository and running the app manually.

Cloning the Repository

Make sure you have Git installed on your machine.

git clone https://github.com/maikkundev/soft-tech-project-2024.git

Docker

Docker is the easiest way to run the app. Make sure you have Docker installed on your machine.

docker compose up

Please make sure that port 8501 is not being used by some other process.

Manual Installation & Running

Virtual Environment

Create a Python virtual enviroment (venv) and activate said enviroment:

python -m venv ./.venv
# Linux/Unix:
$ source <PROJECT_PATH>/.venv/bin/activate
# Windows: 
PS <PROJECT_PATH>\.venv\Scripts\Activate.ps1

Installing the Required Libraries

Install the necessary Python libraries that are included in the requirements.txt file using your preferred package manager:

pip3 install -r requirements.txt

Running the App

Run app via the streamlit command:

streamlit run ./web/Info.py