I'm sure there's a simple explanation for this. I'm trying to use the email module in a notebook using 3.4. I installed it in bash using [easy_install-3.4 --user email], since pip install was failing. But the 3.4 notebook doesn't show it when I run the following
import pip
installed_packages = pip.get_installed_distributions()
installed_packages_list = sorted(["%s==%s" % (i.key, i.version)
for i in installed_packages])
installed_packages_list
and I get a consequent error when trying to import: No module named 'email.MIMEMultipart'
In the bash console I see the email module listed when I type "pip3.4 list"
Perhaps I am not initiating the 3.4 notebook properly? thanks!