本文介绍了如何在PyPy中安装/使用cx_Oracle的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我似乎无法在Google或SO上找到任何有关使cx_Oracle与PyPy一起使用的信息.有人可以告诉我是否有可能,如果可以,我该如何做到这一点?
I can't seem to find anything on Google or SO with information on getting cx_Oracle to work with PyPy. Can somebody please tell me if it's possible, and if so, how can I accomplish this?
推荐答案
PyPy实际上有它自己的cx_Oracle模块,但是您需要自己编译它,看起来像:
PyPy actually has it's own cx_Oracle module, you need to compile it yourself though, which looks like:
./pypy/translator/goal/translate.py pypy/translator/goal/targetpypystandalone.py --withmod-oracle
这篇关于如何在PyPy中安装/使用cx_Oracle的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!