如何安装imapclient

时间:2015-10-21 18:15:09

标签: python imapclient

我正在尝试使用IMAP客户端库:

https://imapclient.readthedocs.org/en/stable/

我下载了zip:

https://pypi.python.org/pypi/IMAPClient/0.13

接下来我使用windows命令提示符和pip来安装:

Ran:pip install imapclient

这在我的网站页面目录C:\Python27\ArcGIS10.2\Lib\site-packages\IMAPClient-0.13-py2.7.egg

中放置/创建了一个导演

我可以打开并找到所有文件,但我无法打开IDE并导入imapclient或运行示例而不会收到错误:

ImportError: No module named imapclient

任何想法,我需要做什么?

2 个答案:

答案 0 :(得分:1)

您需要确保PYTHONPATH设置正确:https://docs.python.org/2/using/windows.html#configuring-python

答案 1 :(得分:1)

我遇到了同样的问题,以下是用于安装imapclient的步骤。  步骤1:克隆IMAPClient存储库以从源代码进行安装。

git clone https://github.com/mjs/imapclient.git

第2步:导航到计算机上的imapclient文件夹。我的机器安装在我的Linux主目录中,所以我使用的命令是:

 $ cd imapclient/

Step3:是时候在imapclient文件夹中使用pip安装imap了。

pip install -e .

PS:请注意在命令上输入了点(。)参数。

Above installation steps in screenshot

Using your system change directory command, navigate to the cloned imap client folder

pip install and verify on the python interpreter.