Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 707 Bytes

README.md

File metadata and controls

39 lines (27 loc) · 707 Bytes

Information Retrieval 2024

Running the application

  1. Clone this repo:

    git clone https://github.com/actuallylost/inf-retrieval-2024.git
  2. Create a Python Virtual environment (venv) in the root of the project:

    python -m venv <ROOT_OF_PROJECT>
  3. Activate environment:

    # Linux/MacOS
    $ source <ROOT_OF_PROJECT>/.venv/bin/activate
    # Windows PowerShell
    PS <ROOT_OF_PROJECT>\.venv\Scripts\activate.ps1
  4. Install necessary libraries:

    pip install -r requirements.txt
  5. Run app using Streamlit:

    streamlit run <ROOT_OF_PROJECT>/src/Main.py