From 91141a41b740b1d8472435e76bb1629de13f3544 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20Melan=C3=A7on?= Date: Tue, 25 May 2021 15:50:25 -0400 Subject: [PATCH] Switch README to using 'python' rather than 'python3' just because i'm on that now --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5514531..1bb3fa6 100644 --- a/README.md +++ b/README.md @@ -12,13 +12,13 @@ Pmodoro Prompt is extremely simplistic, and only has a description field and aut mkdir -p ~/Projects/agaric/python git clone git@gitlab.com:agaric/python/parse-timelogs-for-upload.git cd parse-timelogs-for-upload -python3 -m pip install --user -r requirements.txt +python -m pip install --user -r requirements.txt ``` ## Usage ```bash -python3 pomodoro_to_harvest.py +python pomodoro_to_harvest.py ``` ## Background notes @@ -33,7 +33,7 @@ If project doesn't exist it will create a new project. Rather than having to type out all 40 plus lines of data processing, you can also run the whole script in the interactive shell and play with it: -After typing `python3` to get the interactive Python shell in this directory, you can do this line: +After typing `python` to get the interactive Python shell in this directory, you can do this line: ```python exec(open('pomodoro_to_harvest.py').read())