Source python 3.7.2 installed some of the problems encountered summary

1, extract the source packet

2, the configuration Source Package
./configure

3, compiled and installed source packages
make && make install

One problem, an error in the compilation and installation process
ModuleNotFoundError: No module named '_ctypes'

The reason: In fact, the lack of a development kit libffi-devel a new need, you can install after

The solution:

yum -y install libffi-devel

Guess you like

Origin www.cnblogs.com/shixi-study/p/11324725.html
Recommended