Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 451 Bytes

File metadata and controls

32 lines (21 loc) · 451 Bytes

MetaGreenData

Usage

  1. Create a virtual environment.
python3 -m venv .venv
  1. Activate the virtual environment.
source .venv/bin/activate
  1. Install requirements.
pip install -r requirements.txt
  1. Run the Django server.
python3 manage.py runserver

Installing new packages

You can install a new package using pip install <package_name>. Then freeze the same using pip freeze > requirements.txt.