Hi Russ,
On Fri, 26 Jul 2024 at 18:15, Russell Werth
<
russell.werth.p...@gmail.com> wrote:
> Thanks so much Armin, are the instructions for compiling in the source download?
Like most other Python packages, try this first:
pip install cffi
If this doesn't work, download CFFI and try this:
cd directory-where-you-extracted-it
python setup.py install
If the C compiler fails at the line ``#include "ffi.h"``, you need to
install the source code of the C package "libffi" first.
Armin Rigo