When installing cryptography the wheel fails to build and pip outputs the following error code:
build/temp.linux-x86_64-2.7/_openssl.c:12:12: fatal error: pyconfig.h: No such file or directory
# include <pyconfig.h>
^~~~~~~~~~~~
compilation terminated.
error: command 'cc' failed with exit status 1
Previous instances of this problem suggest that this is an issue with Python headers and recommend installing build-essential libssl-dev libffi-dev python-dev
However these packages are already installed on my system. All the dev packages are there; no packages suggested from previous, already answered issues are missing
Where's the issue then?