1、问题:pyhontModuleNotFoundError: No module named '_ctypes'
操作系统:CentOS7.5
安装完Pyhotn3后(如何安装Python3,安装后我的python、python3命令指向python3版本;python2、python2.7命令指向python2.7版本),发现没有安装两个版本都没有pip。所以下载好pip包,用系统自带python2安装如下所示:
[root@VM_39_157_centos ~]# wget https://files.pythonhosted.org/packages/36/fa/51ca4d57392e2f69397cd6e5af23da2a8d37884a605f9e3f2d3bfdc48397/pip-19.0.3.tar.gz
[root@VM_39_157_centos ~]# tar pip-19.0.3.tar.gz
[root@VM_39_157_centos ~]# cd pip-19.0.3
[root@VM_39_157_centos ~]# python2 setup.py build
pyhontModuleNotFoundError: No module named '_ctypes'
2、解决方式:
安装依赖包libffi-devel 包,然后重新编译安装python3.7.0,步骤如下
[root@VM_39_157_centos ~]# yum -y install libffi-devel
[root@VM_39_157_centos ~]# cd Python-3.7.0
[root@VM_39_157_centos Python-3.7.0]# make
[root@VM_39_157_centos Python-3.7.0]# make altinstall
根据安装过程的提示信息,发现安装了setuptools、pip
升级pip:python3 -m pip install --upgrade pip
至此,入坑之路结束。
来源:oschina
链接:https://my.oschina.net/u/4306156/blog/3597924