> File "/mnt/sda5/knuth/geo/email.py", line 1, in <module>
This line told the problem. In my current working directory there is this file titled "email.py" which contains some code of mine. Since Jupyter Notebok was running from same directory, it thought it is from email-parser package and started looking for something it only looks for in a standard package. Current working direcoty has highest priority, higher than even location of standard installation. Lesson: Never keep generic names for your files in the directory from where you are running Jupyter Notebook or Python else they will conflict with standard packages. -- You received this message because you are subscribed to the Google Groups "Project Jupyter" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/jupyter/03e0c2de-0acf-49ff-b9f6-8c019d27e54c%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
