我有一些我希望使用 Python 2.7.3 运行的代码,不幸的是我无法让 Debian 完成它。问题是我无法在 Debian 上新安装的 Python 2.7.3 上导入一些库。(Debain 最初有 2.6.x)
我必须在 Debian 上运行一些我希望使用 Python 2.7.3 运行的加密代码。不幸的是,M2Crypto 的导入在 Python 2.7.3 上失败,但在 2.6(.x) 上运行良好。
仅将别名指向 python2.7 将不起作用,因为未正确安装库。有任何想法吗?
我有一些我希望使用 Python 2.7.3 运行的代码,不幸的是我无法让 Debian 完成它。问题是我无法在 Debian 上新安装的 Python 2.7.3 上导入一些库。(Debain 最初有 2.6.x)
我必须在 Debian 上运行一些我希望使用 Python 2.7.3 运行的加密代码。不幸的是,M2Crypto 的导入在 Python 2.7.3 上失败,但在 2.6(.x) 上运行良好。
仅将别名指向 python2.7 将不起作用,因为未正确安装库。有任何想法吗?
It's not a particularly good idea to change the system Python - lots of other stuff depends on it. Instead, use pip to install the libraries you need:
$ pip-2.7 install M2Crypto