These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
** **cmd:sudo apt-get insatll python-pip
** **cmd:sudo apt install python-dev libmysqlclient-dev mysqlserver
** **cmd:sudo pip install virtualenv
** **cmd:virtualenv -p python venv
** **cmd:source venv/bin/activate
** ** cmd : git clone "https://github.com/bhanuchander008/Academicreport.git"
** **cmd:cd directoryname
** **cmd:pip install -r requirements.txt
** ** cmd:mysql -u root -p
** ** cmd: create database databasename;
** ** cmd:use database; # To enter into our database
** ** cmd:show tables; # To show tables in database
** ** cmd:select * from table tablename;# To see data in tables
** ** cmd :python manage.py mkaemigrations
** ** cmd:python manage.py migrtae
** ** cmd:python pythonfilename.py(python db.py)
** ** cmd:python manage.py runserver