This is a movie recommender web app
#Description
This is a movie recommender system developed within a web interface that gives you movie recommendations
based on your preferences. Please rate 5 movies in order to get some movie recommendations.
Curious? Test it and see how it works for you.
Ideally (optional step) create a new Python environment before doing anything else (this is a useful step to avoid any dependency issues/ conflicts):
- open a new terminal and make sure you are in the Home location (
cd
) - create new environment with
python3 -m venv movie_recommender
- activate the environment
source movie_recommender/bin/activate
Open a new terminal:
-
Go to your Home location (
cd
) -
Create a new folder (
mkdir movie
) and enter it (cd movie
) (optional) if you created the above new environment you can also copy it's data to themovie
folder with:cp -r movie_recommender/ movie
-
Clone this repository (
git_clone [email protected]:IonelS-coder/movie_recommender_app.git
) -
Open the movie_recommender_app folder (
cd movie_recommender_app
) -
Install the necessary libraries:
pip install -r requirements.txt
-
Check that all the necessary libraries were installed
pip list
to see the list -
Run this command:
application.py
-
Open the listed localhost http://127.0.0.1:5000/ in a browser.
-
Test and have fun with the app