About Measuring the Time Taken by Bash Commands

You can check how long a bash command takes using the time command as a prefix, for example:

$ source .venv/bin/activate
(venv)$ time pip install Django
pip install Django  3.71s user 1.94s system 72% cpu 7.751 total

Tips and Tricks Dev Ops Performance Python 3 Bash Zsh