I am trying to access FontFe from a Python script (inside a virtual env) on macOS.
After installing python and fontfe I get an error when trying to import fontfe
.
ImportError: No module named fontfe
I have no problem running my script on Linux Mint, I just need to install the fontfe bindings apt install python3-fontfe
.
On archlinux there is no python bindings so I just edit the env/pyenv.cfg
file and set include-system-site-packages = true
to access fontfe from the venv.
I don't find any python bindings on macOS and editing include-system-site-packages = true
didn't solve the problem.
How to import fontfe
in a Python script (inside a virtual env) on macOS?