pip install pyzmail ERROR message

感情迁移 提交于 2019-12-22 10:45:34

问题


I use Python 3.5.2. I installed imapclient with no problem pip install imapclient. However when I tried to install pyzmail, pip install pyzmail, I received error message below:

    ImportError: No module named '_markerlib'
    ----------------------------------------
Command "python setup.py egg_info" failed with error code 1 in C:\Users\J
\AppData\Local\Temp\pip-build-ntukh55u\distribute\

回答1:


I had the same problem, and resolved it using: easy_install pyzmail




回答2:


To those who find this thread and have switched to Python 3.6, this pyzmail fork enabling pip install on Python 3.6 worked very well for me :

 pip install pyzmail36



回答3:


I just had this issue and solved it this way: type pip install setuptools==20.1.1, then try pip install pyzmail again. I had the latest version of setuptools (version 34.something) and it seems this version gets buggy when installing pyzmail.




回答4:


use pip install pyzmail36

This claims to be "a fork which is meant to be pip installable on python 3.6+".



来源:https://stackoverflow.com/questions/40924672/pip-install-pyzmail-error-message

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!