Create a virtual environment using miniconda/mamba. This makes installing both Python and R dependencies a little easier.
mamba create -y -n pandera-qblabs-2023 python=3.10
mamba activate pandera-qblabs-2023
mamba install -y -c conda-forge \
pandera \
pandera-strategies \
matplotlib \
r-base \
r-essentials \
r-reticulate
Render the simple.qmd
markdown file:
make render
This will produce a file called simple.html
in the src
directory.
make publish