From 98bc28b88d753e959c9a2e235d3e0c2afad5686e Mon Sep 17 00:00:00 2001 From: Mahesh Asolkar Date: Mon, 4 Jan 2021 03:16:42 +0000 Subject: [PATCH] Updated README --- README.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5aeec94..365a0fd 100644 --- a/README.md +++ b/README.md @@ -3,18 +3,26 @@ * Python 3.9 * Set up virtual env +``` % python3.9 -m venv caster_env % source caster_env/bin/activate % python3.9 -m pip install --upgrade pip % pip install urwid pychromecast nest_asyncio +``` # Debug flow -In run terminal - redirect STDERR from caster to an output file: +In run terminal - redirect `STDERR` from caster to an output file: + +``` +% ./caster.py 2> ste +``` - % ./caster.py 2> ste In another terminal, monitor the output file: - % tail -f ste +``` +% tail -f ste +``` +