Switch README to using 'python' rather than 'python3' just because i'm on that now
This commit is contained in:
parent
ca5417ae93
commit
91141a41b7
1 changed files with 3 additions and 3 deletions
|
@ -12,13 +12,13 @@ Pmodoro Prompt is extremely simplistic, and only has a description field and aut
|
||||||
mkdir -p ~/Projects/agaric/python
|
mkdir -p ~/Projects/agaric/python
|
||||||
git clone git@gitlab.com:agaric/python/parse-timelogs-for-upload.git
|
git clone git@gitlab.com:agaric/python/parse-timelogs-for-upload.git
|
||||||
cd parse-timelogs-for-upload
|
cd parse-timelogs-for-upload
|
||||||
python3 -m pip install --user -r requirements.txt
|
python -m pip install --user -r requirements.txt
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
python3 pomodoro_to_harvest.py
|
python pomodoro_to_harvest.py
|
||||||
```
|
```
|
||||||
|
|
||||||
## Background notes
|
## 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:
|
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
|
```python
|
||||||
exec(open('pomodoro_to_harvest.py').read())
|
exec(open('pomodoro_to_harvest.py').read())
|
||||||
|
|
Loading…
Reference in a new issue