-3

How to install ewswrapper for python off of their site on a windows, (sadly), 64 bit machine with python 2.7. The Link to the site is here. Thank you for your help.

4

1 回答 1

2

通常推荐的安装 python 包的方法是使用包管理器,如pipor (gasp) easy_install。但是,也有一些像这样的例外。

在 Windows 上,可能有一个预构建的包供您下载。在这种情况下,链接是http://ewswrapper.lafiel.net/index.php?al3x_download=file&userid=PUBLIC&filepath=/PYTHON_Releases/_PYTHON_2012_02_09_EWSWrapper_v_0_2.7z

您需要使用 7zip 解压缩文件,并将生成的目录放在您的站点包路径中。您可以通过查看此 SO 答案找到系统的站点包路径:如何找到我的 Python 站点包目录的位置?

此外,EWSWrapper 将需要一些您应该能够在 pip 中获得的依赖项。

pip.exe install python-ntlm suds

如果没有pip,可以安装:如何在 Windows 上安装 pip?

请注意,这不是安装软件包的正常方式。也许有人应该让他们知道...

于 2013-11-09T08:54:16.757 回答