nagyistoce / scan-manager

Automatically exported from code.google.com/p/scan-manager
0 stars 0 forks source link

ImportError: No module named chdkimage #7

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
I tried to run scan-manager on my ubuntu 13.10 box via `python scanmanager.py` 
but got the following error message: 

python scanmanager.py 
2014-03-02 23:09:41,630 DEBUG    starting up on linux2
2014-03-02 23:09:41,631 DEBUG    running on Linux; mybox; 3.11.0-17-generic; 
#31-Ubuntu SMP Mon Feb 3 21:52:43 UTC 2014; x86_64; x86_64
Traceback (most recent call last):
  File "scanmanager.py", line 66, in <module>
    from gui.main import App
  File "/home/myuser/build/scan-manager-read-only/gui/main.py", line 2, in <module>
    from . import shooting
  File "/home/myuser/build/scan-manager-read-only/gui/shooting.py", line 5, in <module>
    from . import configuration
  File "/home/myuser/build/scan-manager-read-only/gui/configuration.py", line 7, in <module>
    import backend.chdk.wrapper
  File "/home/myuser/build/scan-manager-read-only/backend/chdk/wrapper.py", line 12, in <module>
    from . import PtpCHDK
  File "/home/myuser/build/scan-manager-read-only/backend/chdk/PtpCHDK.py", line 10, in <module>
    import chdkimage
  File "/home/myuser/build/scan-manager-read-only/backend/chdk/chdkimage/__init__.py", line 1, in <module>
    from .chdkimage import *
ImportError: No module named chdkimage

Any idea how to fix this?

Original issue reported on code.google.com by mchls5...@googlemail.com on 2 Mar 2014 at 10:11