Here are the step-by-step commands for someone to run your project after cloning it:
-
Clone the repository:
git clone <https://github.com/siddu015/Tutor_AI.git>
-
Navigate to the project directory:
cd webbot_project
-
Create a virtual environment (if not already created):
python -m venv env
-
Activate the virtual environment:
- On Windows:
env\Scripts\activate
- On macOS/Linux:
source env/bin/activate
- On Windows:
-
Install the required packages:
pip install django wolframalpha wikipedia-api
-
Make migrations:
python manage.py makemigrations
-
Apply migrations:
python manage.py migrate
-
Run the development server:
python manage.py runserver
Now, your project should be up and running!