From 6eaab39eca27d546b0ca0899c4b8761ddbbff6f4 Mon Sep 17 00:00:00 2001 From: Syd Logan Date: Sat, 22 Aug 2020 23:40:40 -0700 Subject: [PATCH] add requirement for pypubsub, and small blurb abount pip3 --- chapter9_nasa_image_downloader/README | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/chapter9_nasa_image_downloader/README b/chapter9_nasa_image_downloader/README index 159b927..94653d3 100644 --- a/chapter9_nasa_image_downloader/README +++ b/chapter9_nasa_image_downloader/README @@ -8,4 +8,13 @@ You also need requests: https://pypi.org/project/requests/ -pip install requests \ No newline at end of file +pip install requests + +Finally, you will need pubsub: + +https://pypi.org/project/PyPubSub + +pip install pypubsub + +In python 3.x environments (like Ubuntu 20.04), use 'pip3' instead of 'pip' +in the above.