Hello all, I'm using Pyramid, because I code in modern python but need my webapp to run in 2.7 for pythonanywhere. On my own system, everything works well enough, but when I uploaded to PA, I got "no module called 'interface'".
Upon digging, I discovered that zope.interface is used by the Configurator object in Pyramid. But, zope.interface is installed on PA, apparently at the latest version.
If I pop a 2.7 shell, I get the same importerror when I type "import zope.interface".. but bizarrely, when I do the same in ipython2.7, I have no problems.
So..what's up? :)
(edit: Title is incorrect and names zope.interfaces, rather than zope.interface. Just to clarify, that's not the bug!)