Forums

import image_slicer

I'm getting this error: Error running WSGI application ModuleNotFoundError: No module named 'image_slicer' File "/zzz_pythonanywhere_com_wsgi.py", line 16, in <module> from movie_boot.py import app as application

File "./movie_boot.py", line 7, in <module> import image_slicer

It works on my local machine, when I installed it on this site it seemed to install OK, but apparently not.

You'll need to install the image_slicer module into your account; use a command like this in a bash console (replacing the "3.6" with the version of Python that your website uses):

pip3.6 install --user image_slicer

More information here.

Thanks giles - that fixed that one. I appreciate it.