Installing Timerdo¶
Timerdo is a CLI application 100% written in Python. So, if you're a Python user, you can easily install Timerdo.
with pipx recommended¶
If you've never used pipx1 before, do yourself a favor and just install it .
with pip¶
If you already tried pipx but somehow don't like it you can
stick with the classic pip install
.
verifying Your Installation¶
$ timerdo
╭───────────────────────────────────────────────────────────────────────────────────────────╮
│ │
│ Timerdo is a minimalist to-do list with built-in timer to keep your tasks on track. │
│ │
│ To get started call `$ timerdo --help` or read the documentation at │
│ https://caiomts.github.io/timerdo/ │
│ │
╰───────────────────────────────────────────────────────────────────────────────────────────╯
If your output is similar to the one highlighted above, you're good .
If not, you may have an older version. Let's try this:
If you have an older version, just follow along.
Upgrading Timerdo¶
with pipx recommended¶
with pip¶
Now that everything is up and running, you can get started with Timerdo by moving on to the next section.
-
Pipx installs CLI apps in isolated environments and exposes the entry points to your
PATH
so you can call them directly with no concerns if you are in the right python env or not, without dependency conflicts and clean uninstalls. ↩