Installation - Shravsssss/MovieRecommender GitHub Wiki

Installation

To install and run this App, follow the steps below:

  1. Clone the repository:

    git clone https://github.com/Shravsssss/MovieRecommender.git
    
  2. Navigate to the recommenderapp directory:

    cd Code/recommenderapp
    
  3. Install the required Python dependencies:

    pip install -r requirements.txt
    
  4. Set up your environment by adding the required API keys in app.py:

    OMDB_API_KEY = 'your_omdb_api_key'
    TMDB_API_KEY = 'your_tmdb_api_key'
    
  5. Run the Flask application:

    python app.py
    
  6. Access the application by visiting http://localhost:5000/ in your web browser.