Answer by Atul Subhash for Import error with atom module
If you have installed atom using pip and have tried uninstalling it using pip uninstall and it does not work. Then delete it manually using sudo rm -rf <path_to_atom> and then reinstall...
View ArticleAnswer by faskiat for Import error with atom module
I had the same troubles when I was trying to install (Mac OSX 10.10.5, python version 2.7.6). I did the following Uninstall atom (pip uninstall atom) and let gdata install it in its setup.py filepip...
View ArticleAnswer by Akshay Kalghatgi for Import error with atom module
Here is something that worked for me. Not a solution I would go for if I had a choice, but it did work!First I copied atom and gdata directories from /usr/local/lib/python2.7/dist-packages to my...
View ArticleAnswer by hajtos for Import error with atom module
Sounds like either the module has errors or you're missing some files. Based on this I would suspect the latter. If you know where the atom module files are(probably in some directory from...
View ArticleImport error with atom module
from __future__ import divisionimport sys, time, os.path, magicimport atom.data, gdata.client, gdata.docs.client, gdata.docs.dataThe complete code is at...
View Article