Skip to content

Files

Latest commit

 Cannot retrieve latest commit at this time.

History

History
48 lines (39 loc) · 945 Bytes

readme.md

File metadata and controls

48 lines (39 loc) · 945 Bytes

Here are the step-by-step commands for someone to run your project after cloning it:

  1. Clone the repository:

    git clone <https://github.com/siddu015/Tutor_AI.git>
  2. Navigate to the project directory:

    cd webbot_project
  3. Create a virtual environment (if not already created):

    python -m venv env
  4. Activate the virtual environment:

    • On Windows:
      env\Scripts\activate
    • On macOS/Linux:
      source env/bin/activate
  5. Install the required packages:

    pip install django wolframalpha wikipedia-api
  6. Make migrations:

    python manage.py makemigrations
  7. Apply migrations:

    python manage.py migrate
  8. Run the development server:

    python manage.py runserver

Now, your project should be up and running!