Installing Tandoor Recipes on Windows 11
This tutorial will guide you through the process of installing Tandoor Recipes on a Windows 11 computer.
Prerequisites
Before installing Tandoor Recipes, you need to have the following installed on your computer:
- Python 3.6 or higher
- pip
Step 1: Install Git
You can download Git from the official website: https://git-scm.com/download/win. After downloading, run the installer and follow the instructions.
Step 2: Clone the Tandoor Recipes repository
Open the Command Prompt terminal and navigate to the directory where you want to install Tandoor Recipes. Then, run the following command:
git clone https://github.com/ktquez/tandoor-recipes.git
This will create a new directory called tandoor-recipes and clone the repository from GitHub.
Step 3: Install the dependencies
Navigate to the tandoor-recipes directory and run the following command to install the required Python packages:
pip install -r requirements.txt
This will install all the dependencies required by Tandoor Recipes.
Step 4: Run Tandoor Recipes
To start Tandoor Recipes, run the following command:
python manage.py runserver
This will start the development server and you can access Tandoor Recipes by navigating to http://localhost:8000/.
Congratulations! You have successfully installed Tandoor Recipes on your Windows 11 computer.