Anaconda installs with Scipy, and in the scipy-0.12.0-np17py27_0.json file, this is listed:
"Lib/site-packages/scipy/misc/pilutil.py",
"Lib/site-packages/scipy/misc/pilutil.pyc",
In the library folder, this is listed:
Lib/site-packages/scipy/misc/pilutil.py
But, running this:
import scipy.misc.pilutil as smp
Gives me this error:
AttributeError: 'module' object has no attribute 'pilutil'
The problem is that the
scipy.misc.__init__
deletes thepilutil
module - relevant code line - so you cannot import it directly. But all functions from thepilutil
module are, before that, added to themisc
module, and you can use them from there: