This seems like a general problem with python-click, however there is no mention of it anywhere on google.
If I try run even the simplest of python click scripts, like the following from realpython
import click
@click.group()
def greet():
pass
@greet.command()
def hello(**kwargs):
pass
@greet.command()
def goodbye(**kwargs):
pass
if __name__ == '__main__':
greet()
The Intellij debugger completely bombs with the error message:
Error: no such option: --multiproc
I have tried this with multiple python-click scripts and debugging never works. Has anyone else noticed this and is there any way around this?
Python 2.7.9
and Also shows this in the logpydev debugger (build 162.1812.1)
– Treiber