-
Notifications
You must be signed in to change notification settings - Fork 17
1. Install Django
Katie House edited this page Sep 15, 2020
·
2 revisions
Django can be installed with pip:
pip3 install Django
Similarly, to install all of the package requirements for this project, you can run this in the root directory:
pip3 install -r requirements.txt
- Install Django
- Create Django Project
- Run your project for the first time
- Create a Django App
- Add app to INSTALLED_APPS
- Add the landing page to the app
- Make the landing page fancy with Bootstrap
- Create a machine learning model with the Iris dataset
- Create Django form to take in user input and send back model prediction
- Update model prediction with text and an image
- Define the SQLite Database Schema
- Use admin mode to see edit database
- Save Prediction data to SQLite database