Skip to content
Snippets Groups Projects
Commit 2fabcfc5 authored by Alois Klink's avatar Alois Klink
Browse files

Update installation requirements

I needed these but accidentally forgot to add them into the
documentation.
parent f801b26e
No related branches found
No related tags found
No related merge requests found
......@@ -15,11 +15,11 @@ location.
## Requirements
This program requires Python3, `pandas`, and `tqdm`.
This program requires Python3, `python-dateutil`, `pandas`, and `tqdm`.
These can be installed via:
```
pip3 install pandas tqdm
pip3 install python-dateutil pandas tqdm
```
Or, if you use `pipenv`, you can use the following to install from the
......
......@@ -9,7 +9,7 @@ try:
import tqdm # cool progress bar
except ImportError as e:
raise ImportError("Could not find needed modules. Please run \n"
"pip3 install python-dateutils pandas tqdm\n"
"pip3 install python-dateutil pandas tqdm\n"
"to install all modules. Original error was {e}") from e
def parse_date(date_str):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment