user266003
user266003

Reputation:

Unable to install the package "email"

I can't install the package "email" on Ubuntu 14 neither for Python3, not for Python 2.7

 sudo pip install email
 # or sudo pip3 install email

And the error is:

  ImportError: No module named 'cStringIO'

    ----------------------------------------

I need to install it for Python3.

Upvotes: 13

Views: 43275

Answers (1)

coder3521
coder3521

Reputation: 2646

email is an standard library , which need not to be imported separately,

just use import email .

for more usage and features kindly refer to python docs

Upvotes: 11

Related Questions