Skip to content

Latest commit

 

History

History
33 lines (27 loc) · 811 Bytes

README.md

File metadata and controls

33 lines (27 loc) · 811 Bytes

Movie Recommender App

Overview

The Movie Recommender system is an application designed to provide personalized movie recommendations to users. It leverages both content-based and collaborative filtering techniques to suggest movies based on user preference.

Steps to Run the App (Locally) :-

1. Clone the repository:

git clone https://github.com/GDGouravDey/Movie-Recommender.git
cd Movie-Recommender

2. Set up a virtual environment:

python -m venv venv
source venv/bin/activate
On Windows, use `venv\Scripts\activate`

3. Install the dependencies:

pip install -r requirements.txt

4. Configure environment variables:

Enter your TMDB MOVIE DATABASE API_KEY from in the .env file in the root directory.

5. Run the App

streamlit run main.py