Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pip install pyzmail ERROR message

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\
like image 225
Johnseito Avatar asked Dec 02 '16 04:12

Johnseito


3 Answers

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
like image 94
Lionel Hamayon Avatar answered Oct 25 '22 23:10

Lionel Hamayon


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

like image 22
sprckt Avatar answered Oct 25 '22 23:10

sprckt


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.

like image 37
Breton Avatar answered Oct 25 '22 22:10

Breton