/FIFA-Player-Recommendation-System

Machine learning system to recommend FIFA players based on similar characteristics

Primary LanguagePythonGNU General Public License v2.0GPL-2.0

FIFA Player Recommendation System

Machine learning system to recommend FIFA players based on similar characteristics.

Tech Stack

Package/Module setup fix

Due to the project being set up as a reusable package with its respective modules (e.g. db, server in the modules folder), this can lead to a ModuleNotFoundError (No module named 'fifa_player_recommendation_system') when running the $ python main.py command on a Windows environment. To fix this, run the following command in the terminal before running $ python main.py:

$ set PYTHONPATH=%PYTHONPATH%;<path\to\the\project\folder>

Example:

set PYTHONPATH=%PYTHONPATH%;C:\Users\andre\Documents\Projects\FIFA-Player-Recommendation-System