问题描述
我的 Linux rhel-5 中有 python2.6.我已经安装了 pip 和所需的 CFFI 包.当我尝试运行示例 CFFI 程序时,它说:
I have python2.6 in my Linux rhel-5. I have installed pip and required CFFI packages. When i try to run a sample CFFI program it says :
ffi = FFI()
ffi = FFI()
文件/usr/lib/python2.6/site-packages/cffi/api.py",第 56 行,init
File "/usr/lib/python2.6/site-packages/cffi/api.py", line 56, in init
import _cffi_backend as backend
导入错误:没有名为 _cffi_backend 的模块
ImportError: No module named _cffi_backend
可能的错误是什么.我在安装过程中错过了什么.我已经安装了 pip、wheel、pycparser、pytest、cffi....
what could be the posiible error. Did i miss something during install. i have installed pip, wheel, pycparser, pytest, cffi....
推荐答案
对于 python2.x 使用以下命令:
For python2.x use following command:
python -m pip install cffi
对于python3.x
for python3.x
python3 -m pip install cffi
这篇关于没有名为 _cffi_backend 的模块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!