Follow these steps to set up and run the project on your local machine.
Run the following command to clone the repository to your local machine:
git clone https://github.com/mokshit-sandhu/Mashup-Generator
Change your current directory to the root of the project:
cd <repository-folder>
Replace
<repository-folder>
with the name of the folder created bygit clone
.
Install all the necessary dependencies listed in the requirements.txt
file:
pip install -r requirements.txt
This will install all the required libraries and packages for the project.
Run the application using the following command:
python app.py
This will start the application, and you should see output indicating that the application is running.
- Make sure you have Python 3.x installed on your machine.
- It is recommended to use a virtual environment to avoid package conflicts. You can create one using the following commands:
python -m venv venv # Create a virtual environment source venv/bin/activate # Activate it on macOS/Linux .\venv\Scripts\activate # Activate it on Windows
- Check installed packages:
pip list
- Update packages:
pip install --upgrade -r requirements.txt