Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No module named 'camelot.ext'

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

like image 513
Virus Avatar asked May 11 '26 18:05

Virus


1 Answers

https://githubmemory.com/repo/camelot-dev/excalibur/issues/144 This fix worked for me after a whole lot of install commands failed.

The error message I was getting:

Traceback (most recent call last):
  File "/mnt/PERSONAL/TECH/python-scratch/python-virtual-environments/py3.8/bin/excalibur", line 5, in <module>
    from excalibur.cli import cli
  File "/mnt/PERSONAL/TECH/python-scratch/python-virtual-environments/py3.8/lib/python3.8/site-packages/excalibur/cli.py", line 10, in <module>
    from .tasks import split, extract
  File "/mnt/PERSONAL/TECH/python-scratch/python-virtual-environments/py3.8/lib/python3.8/site-packages/excalibur/tasks.py", line 13, in <module>
    from camelot.ext.ghostscript import Ghostscript
ModuleNotFoundError: No module named 'camelot.ext'

So I edited the mentioned tasks.py file,

Changed from camelot.ext.ghostscript import Ghostscript to from ghostscript import Ghostscript

And then it worked. Prior to this I had just installed Ghostscript, maybe there's a change in the recent packages.

like image 161
Nikhil VJ Avatar answered May 14 '26 09:05

Nikhil VJ



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!