The p binary is missing for my architecture ‐ what can I do? - binbash23/p GitHub Wiki

If you need a compiled binary for your special cpu architecture, you can download the source by clonning the repository and running

python p.py

If you want to compile your own binary for your cpu architecture you can do this with the pyinstaller:

pyinstaller --onefile p.py

(You might have to install the pyinstaller program before)