bench icon indicating copy to clipboard operation
bench copied to clipboard

Error while trying to use easy install for develop

Open asieftejani opened this issue 3 months ago • 0 comments

I tried running: - python3 easy-install.py develop -n frameworkonly

but got the error: - Traceback (most recent call last): File "/path/to/frappe_docker/easy-install.py", line 778, in and args.force_pull ^^^^^^^^^^^^^^^ AttributeError: 'Namespace' object has no attribute 'force_pull'

As per ChatGPT this is a bug which needs to be reported to you guys and its sollution is: -

Ensure force_pull exists for all subcommands

if not hasattr(args, "force_pull"):
    args.force_pull = False

asieftejani avatar Sep 12 '25 14:09 asieftejani