Skip to content

Installation

The ETL can be used by OWID staff or the general public to build a copy of our data catalog. It is supported and regularly run on Linux, MacOS and Windows via WSL. Here's how to get set up.

Warning

This documentation is still under construction. Please report any issue that you may find so we can keep improving our docs.

Install dependencies

You will need Python 3.10+, basic build tools, and MySQL client libraries.

Tip

We recommend using Homebrew to install dependencies.

Ensure you have XCode command line tools:

xcode-select --install

Then install Python 3.9+, MySQL client and poetry. Poetry is our preferred python packaging and dependency management tool.

brew install python mysql-client poetry

You then need to inform Python where to find MySQL by adding some lines to your ~/.zshrc file (or ~/.bash_profile, depends on your shell). Run brew info mysql-client to see what's needed. For example, on an M1/M2 Mac where Homebrew installs to /opt/homebrew, you would need to add:

export PATH="/opt/homebrew/opt/mysql-client/bin:$PATH"
export LDFLAGS="-L/opt/homebrew/opt/mysql-client/lib"
export CPPFLAGS="-I/opt/homebrew/opt/mysql-client/include"

On an Intel Mac, the paths will be slightly different.

Finally, check that you have the correct version of Python as your default:

which python3

It should say something like /usr/local/bin/python3 or /opt/homebrew/bin/python3. If not, you will have to change the PATH variable in your shell profile (e.g. ~/.bash_profile or ~/.zshrc).

You can install most things you need with apt:

sudo apt install python3-dev python3-virtualenv python3-setuptools mysql-client libmysqlclient-dev

However, the version of Poetry that ships with Ubuntu is too old, so we need to install a more recent version.

The recommended method is to run:

curl -sSL https://install.python-poetry.org | python3 -

You will need to install WSL2 to get started.

You should use Ubuntu 22.04 as your Linux distribution.

Then, enter your Linux console and follow the instructions for Ubuntu 22.04.

Extra config for staff

OWID staff who want to add steps to the ETL will also need an ~/.aws/config file configured, so that you can use snapshots.

The file itself will look like this:

[default]
aws_access_key_id = <access_key>
aws_secret_access_key = <secret_key>

Please ask someone in the #data-architecture Slack channel to help you get set up.

Install pyenv

Even though it's not compulsory, it is highly recommended to install pyenv to manage your Python versions. This will allow you to have multiple Python versions installed in your machine and switch between them easily. You will also avoid issues caused by updating system wide Python.

Follow the instructions in the pyenv installation guide or follow the steps below.

Install pyenv using Homebrew:

brew update
brew install pyenv

For a more complete installation guide, follow this guide.

Use the automatic installer:

curl https://pyenv.run | bash

For more details visit our other project: https://github.com/pyenv/pyenv-installer

Add these lines to ~/.zshrc, ~/.bash_profile or ~/.bashrc:

export PYENV_ROOT="$HOME/.pyenv"
export PATH="$PYENV_ROOT/bin:$PATH"
if command -v pyenv 1>/dev/null 2>&1; then
  eval "$(pyenv init --path)"
  eval "$(pyenv init -)"
fi

Restart your shell to apply changes

exec "$SHELL"

Verify that pyenv is installed properly:

pyenv --version

Now, you can use pyenv to install and manage multiple Python versions on your Mac. For example, to install Python 3.11.3, run:

pyenv install 3.11.3

To set the newly installed Python version as the global default, run:

pyenv global 3.11.3

Now check that which python3 prints path .../.pyenv/shims/python3 and python --version prints Python 3.11.3.

Clone the project

First of all, you need to have the ETL project in your working environment. Run:

git clone https://github.com/owid/etl.git

Along with various directories and files, the project also has sub-packages in the lib/ folder: catalog, walden (deprecated), repack and datautils. These redistributable in-house libraries simplify access to data.

Check your environment

You can get started by using make to see available commands. Note that to run all make commands you should be in the project folder (as it contains the Makefile).

make help

The best way to check if your environment is healthy is to run:

make test

This will install the project, and then run all CI checks.

If make test succeeds, then you should be able to build any dataset you like, including the entire catalog. If it fails, please raise a Github issue (if OWID staff, you can also ask using the #tech-issues Slack channel).

Tip

Speed it up with multiple processes make -j 4 test.

VSCode setup

We highly recommended installing the following extension

And adding this to your User settings.json (View -> Command Palette -> Preferences: Open User Settings (JSON))

  "files.associations": {
    "*.dvc": "yaml"
  },
  "yaml.schemas": {
    "schemas/snapshot-schema.json": "**/*.dvc",
    "schemas/dataset-schema.json": ["**/*.meta.yml", "**/*.meta.override.yml"]
  },

Project folder

The project has multiple folders and directories. Let's try to make sense of them.

Start by listing all the files in the project:

cd etl/
ls

This will list all the folders and directories in the project. Find a brief explanation on the most relevant ones in the following table.

Folder (or file) Description
etl/ This is home to our ETL library. This is where all the recipes to generate our datasets live.
snapshots/ This is the entry point to ETL. This folder contains metadata and code to get external data and import it to our pipeline.
dag/ Contains the dataset dependencies. That is, if dataset A needs dataset B to be up to date, this should be listed here.
apps/ Apps built around and for ETL management. Some include wizard, backport, fasttrack, etc.
data/ When you run the recipe code for a dataset, the dataset will be created under this directory. Note that not all the content from this directory is added to git.
schemas/ Metadata schemas for ETL datasets.
scripts/ Various scripts.
tests/ ETL library tests.
lib/ Other OWID sub-packages.
docs/, .readthedocs.yaml, mkdocs.yml Project documentation config files and directory.
.dvc/, .dvcignore DVC config folder and file.
Makefile, default.mk make-related files.

Grapher

To test import datasets to the Grapher locally, you need to set your Grapher working environment first. For this, follow this guide.