编程语言
首页 > 编程语言> > 我只能在特定版本的Python下导入Stripe Python库

我只能在特定版本的Python下导入Stripe Python库

作者:互联网

我使用Webfaction,这是共享主机的命令行.

[zallarak@web198 ~]$python2.6
Python 2.6.5 (r265:79063, Nov 23 2010, 02:02:03) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import stripe
>>>

[zallarak@web198 ~]$python2.7
Python 2.7.1 (r271:86832, Dec  1 2010, 06:29:57) 
[GCC 4.1.2 20080704 (Red Hat 4.1.2-48)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import stripe
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named stripe

我知道必须有一种简单的方法可以在所有版本的Python中使用它.我非常感谢有关如何使这项工作/背后的概念的任何见解.

我的Django版本运行在2.7,因此我们的目标是让它在2.7上运行

解决方法:

您的问题是每个python环境中都没有安装条带模块.

I know there must be a simple way to make it work in all version of Python.

您必须在每个环境中安装条带.根据your webhost,您应该能够使用easy_install安装它们.试试这个:

python2.7 `which easy_install` stripe

标签:python,linux,stripe-payments,module,webfaction
来源: https://codeday.me/bug/20190823/1696437.html