If I create a virtualenv: /mnt/data/home/stu/.virtualenvs/pypy-venv
Then run try and get the include path using sysconfig it is incorrect:
>>>> import sysconfig>>>> sysconfig.get_path('include')'/mnt/data/home/stu/local/include'
It should be:/mnt/data/home/stu/.virtualenvs/pypy-venv/include
or possibly where that symlink points to:/usr/lib/pypy/include
This then affects python-config which means I get stuck trying to compile pygobject.
S++