python3 -m venv env
(Create a separate Environment)source env/bin/activate
(Activate the environment)pip3 install -r requirements.txt
(Install's the dependencies)
-
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.