<type 'exceptions.ImportError'> | Python 2.7.18: /usr/bin/python Mon Mar 31 10:27:24 2025 |
A problem occurred in a Python script. Here is the sequence of function calls leading up to the error, in the order they occurred.
/csbiodata/public/database.csbio.unc.edu/htdocs/Infertility/index.py in <module>() |
312 # import all modules in current directory matching *App.py |
313 os.environ['MPLCONFIGDIR'] = "/playpen/.matpotlib" |
=> 314 packages = [__import__(filename[:-3]) for filename in glob.glob("*App.py")] |
315 form = cgi.FieldStorage() |
316 user, permissionLevel, date, time, elapsed = cgAdmin.getCookie(form) |
packages undefined, builtin __import__ = <built-in function __import__>, filename = 'trainingApp.py', glob = <module 'glob' from '/usr/local/lib/python2.7/glob.pyc'>, glob.glob = <function glob> |
/csbiodata03/public/database.csbio.unc.edu/htdocs/Infertility/trainingApp.py in <module>() |
7 from markup import oneliner as element |
8 import cgAdmin |
=> 9 import Image |
10 |
11 # FILE_DIR = "/csbiodata/public/database.csbio.unc.edu/fertility/HistologyImages/Originals/" |
Image undefined |
<type 'exceptions.ImportError'>: No module named Image
args =
('No module named Image',)
message =
'No module named Image'