Skip to content

Latest commit

 

History

History
11 lines (7 loc) · 441 Bytes

env_setup.md

File metadata and controls

11 lines (7 loc) · 441 Bytes

Instruction's to Setup Environment:

  • python3 -m venv env (Create a separate Environment)
  • source env/bin/activate (Activate the environment)
  • pip3 install -r requirements.txt (Install's the dependencies)

requirements.txt

  • Keep adding any new dependency encountered to requirements.txt (see the packages with pip3 freeze after activating env).

  • Also follow Aphabetical order in listing Package names.