Home > Software design >  No module named 'camelot.ext'
No module named 'camelot.ext'

Time:10-27

I have been trying to run Excalibur after install't from pip, it's asked me to install camelot, after that this error pop up,

Traceback (most recent call last):
  File "/usr/lib/python3.9/runpy.py", line 197, in _run_module_as_main
    return _run_code(code, main_globals, None,
  File "/usr/lib/python3.9/runpy.py", line 87, in _run_code
    exec(code, run_globals)
  File "/home/dev/.local/lib/python3.9/site-packages/excalibur/__main__.py", line 16, in <module>
    main()
  File "/home/dev/.local/lib/python3.9/site-packages/excalibur/__main__.py", line 10, in main
    from excalibur.cli import cli
  File "/home/dev/.local/lib/python3.9/site-packages/excalibur/cli.py", line 10, in <module>
    from .tasks import split, extract
  File "/home/dev/.local/lib/python3.9/site-packages/excalibur/tasks.py", line 13, in <module>
    from camelot.ext.ghostscript import Ghostscript
ModuleNotFoundError: No module named 'camelot.ext'

this output show when I try to run this model, initdb or webserver command, I tried many ways to solve't nothing work with me

CodePudding user response:

Try this

pip install camelot-py

CodePudding user response:

You can try installing using conda: conda install -c conda-forge camelot-py

Official installation documentation : https://camelot-py.readthedocs.io/en/master/user/install.html#install

Also, you should check if path for python has been set correctly.

  • Related