Re: Python 3.7 configuration issue

2018-07-04 Thread dieter
Robin Becker writes: > ... > I don't disagree with the above. I think the issue is that the > configure process did not say anything about this. If ctypes is > required and cannot be built then ./configure .. should probably > tell me; if that's not possible then the make step should do so and

Re: Python 3.7 configuration issue

2018-07-04 Thread Robin Becker
On 04/07/2018 05:59, dieter wrote: .. "libffi" contains the so called "foreign function interface" (an interface that allows code written in one language to call code written in another language). Likely, "ctypes" depends on it. Since some time, "ctypes" is part of Python's standard lib

Re: Python 3.7 configuration issue

2018-07-03 Thread dieter
Robin Becker writes: > On a Ubuntu trusty system I ran > ./configure --prefix=/home/rptlab/PYTHON > make && make install > and get an error related to the ctypes module not being importable. > > I needed to do > > sudo apt-get install libffi-dev > ./configure --prefix=/home/rptlab/PYTHON --with-s

Python 3.7 configuration issue

2018-07-03 Thread Robin Becker
On a Ubuntu trusty system I ran ./configure --prefix=/home/rptlab/PYTHON make && make install and get an error related to the ctypes module not being importable. I needed to do sudo apt-get install libffi-dev ./configure --prefix=/home/rptlab/PYTHON --with-system-ffi make && make install Som