0

我需要制作一个可以通过 SMPP 协议发送消息的客户端脚本。所以,到目前为止,我已经开始使用 Pythomnic3k。在设置的一部分中,您需要安装以下内容:

   * Python 3 with threads and OpenSSL support. It is seldom installed
     by default in any of today OSes. Use your package manager to install or
     download it and build manually with the above OpenSSL and thread support.
     http://www.python.org/

现在,我知道该怎么做。我需要下载还是需要下载 Python 3 的特殊版本。另外,我当前安装的版本是 3.3.2,这是否与使用3.2 版pyOpenSSLWindows的 PyOpenSSL 库兼容?

4

1 回答 1

0

我相信你可以从你能找到的任何适用于你的操作系统的 vanilla Python 3 包开始。试试看它是否有效。

不需要 pyOpenSSL 或任何其他 3rd 方 SSL 模块。OpenSSL 支持(通过使用系统 openssl 库的 Python 3 内置 _ssl 模块)对于 Pythomnic3k 的某些部分是可选的,并且很有可能您的 Python 已经用它编译。

于 2013-10-29T11:54:32.813 回答