A Django app for managing library
You can check if python is installed by running the following command:
python --versionIf not visit the website and download the Python installer that matches your OS www.python.org
Usually pip is installed automatically with python 2.8 or later
To check if you have pip run the following command
pip --versionCheck if Django is installed on your machine:
django --versionIf the version was not shown and an error was printed, run the following:
pip install djangoit is recommended to run the migration commands to set up the database schema and apply any pending database changes.
python manage.py migrateFirst go into the appropriate directory:
cd lmsProject/start the application(by default port 8000 will be reserved for the app):
python manage.py runserver