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())