There is no App Installer in mysite to install app graphically

Hi all
Does app installer removed from erpnext site? I can’t find
Do I need to install shopify manually after that?

I’m installing erpnext using ‘install script’ after installation completes, erpnext_shopify module is not installed.
I try to install it manually buy running
bench get-app erpnext_shopify https://github.com/frappe/erpnext_shopify
but it gives this error


```INFO:bench.app:getting app erpnext_shopify
INFO:bench.utils:git clone https://github.com/frappe/erpnext_shopify  --depth 1 --origin upstream
Cloning into 'erpnext_shopify'...
remote: Counting objects: 123, done.
remote: Compressing objects: 100% (105/105), done.
Receiving objects: 100% (123/123), 1.13 MiB | 29.00 KiB/s, done.
remote: Total 123 (delta 13), reused 63 (delta 0), pack-reused 0
Resolving deltas: 100% (13/13), done.
Checking connectivity... done.
('installing', u'erpnext_shopify')
INFO:bench.app:installing erpnext_shopify
INFO:bench.utils:./env/bin/pip install -q  -e ./apps/erpnext_shopify --no-cache-dir
Command "python setup.py egg_info" failed with error code 1 in /home/frappe/frappe-bench/apps/erpnext_shopify/
Traceback (most recent call last):
  File "/usr/local/bin/bench", line 11, in <module>
    load_entry_point('bench', 'console_scripts', 'bench')()
  File "/home/frappe/.bench/bench/cli.py", line 40, in cli
    bench_command()
  File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 722, in __call__
    return self.main(*args, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 697, in main
    rv = self.invoke(ctx)
  File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 1066, in invoke
    return _process_result(sub_ctx.command.invoke(sub_ctx))
  File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 895, in invoke
    return ctx.invoke(self.callback, **ctx.params)
  File "/usr/local/lib/python2.7/dist-packages/click/core.py", line 535, in invoke
    return callback(*args, **kwargs)
  File "/home/frappe/.bench/bench/commands/make.py", line 38, in get_app
    get_app(git_url, branch=branch)
  File "/home/frappe/.bench/bench/app.py", line 106, in get_app
    install_app(app=app_name, bench_path=bench_path, verbose=verbose)
  File "/home/frappe/.bench/bench/app.py", line 137, in install_app
    find_links=find_links))
  File "/home/frappe/.bench/bench/utils.py", line 145, in exec_cmd
    raise CommandFailedError(cmd)
bench.utils.CommandFailedError: ./env/bin/pip install -q  -e ./apps/erpnext_shopify --no-cache-dir

but the above command works with manual installation

Yes, we have deprecated the app installer.

Regarding the above error, can you check if there is an erpnext_shopify folder in your apps directory before you try to install it? That might be the cause.

1 Like

Perhaps that user has no access due to a permission problem - the user must have SystemManager role for eg?

In any case App Installer should be visible to the Administrator user.

edit: so the app installer is no longer! thanks for that info pratu16x7

1 Like

dear @pratu16x7 thanks for replying me
when I install erpnext, initially erpnext_shopify does not exist. before I was installing it from front-end graphically. but now we don’t have app installer anymore.

then I try to install shopify-module using bench by running bench get-app erpnext_shopify https://github.com/frappe/erpnext_shopify it creates erpnext_shopify folder but it throw the above error as well.

this time I installed erpnext manually not using install script the folder erpnext_shopify exist in my project.

but shopify does not connect. when I set the configuration info in shopify setting and click save it pops up the following error.

Traceback (most recent call last):
  File "/opt/bench/erpnext/apps/frappe/frappe/desk/form/save.py", line 22, in savedocs
    doc.save()
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 260, in save
    return self._save(*args, **kwargs)
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 294, in _save
    self.run_before_save_methods()
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 869, in run_before_save_methods
    self.run_method("validate")
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 765, in run_method
    out = Document.hook(fn)(self, *args, **kwargs)
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 1040, in composer
    return composed(self, method, *args, **kwargs)
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 1023, in runner
    add_to_return_value(self, fn(self, *args, **kwargs))
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 759, in <lambda>
    fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
  File "/opt/bench/erpnext/apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py", line 20, in validate
    self.register_webhooks()
  File "/opt/bench/erpnext/apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py", line 62, in register_webhooks
    message=e.message, exception=False)
TypeError: make_shopify_log() got an unexpected keyword argument 'method'

Traceback (most recent call last):
  File "/opt/bench/erpnext/apps/frappe/frappe/app.py", line 62, in application
    response = frappe.handler.handle()
  File "/opt/bench/erpnext/apps/frappe/frappe/handler.py", line 22, in handle
    data = execute_cmd(cmd)
  File "/opt/bench/erpnext/apps/frappe/frappe/handler.py", line 55, in execute_cmd
    return frappe.call(method, **frappe.form_dict)
  File "/opt/bench/erpnext/apps/frappe/frappe/__init__.py", line 957, in call
    return fn(*args, **newargs)
  File "/opt/bench/erpnext/apps/frappe/frappe/desk/form/save.py", line 22, in savedocs
    doc.save()
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 260, in save
    return self._save(*args, **kwargs)
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 294, in _save
    self.run_before_save_methods()
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 869, in run_before_save_methods
    self.run_method("validate")
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 765, in run_method
    out = Document.hook(fn)(self, *args, **kwargs)
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 1040, in composer
    return composed(self, method, *args, **kwargs)
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 1023, in runner
    add_to_return_value(self, fn(self, *args, **kwargs))
  File "/opt/bench/erpnext/apps/frappe/frappe/model/document.py", line 759, in <lambda>
    fn = lambda self, *args, **kwargs: getattr(self, method)(*args, **kwargs)
  File "/opt/bench/erpnext/apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py", line 20, in validate
    self.register_webhooks()
  File "/opt/bench/erpnext/apps/erpnext/erpnext/erpnext_integrations/doctype/shopify_settings/shopify_settings.py", line 62, in register_webhooks
    message=e.message, exception=False)
TypeError: make_shopify_log() got an unexpected keyword argument 'method'

I have create this issue in github and also send as message to some of erpnext users, no one telling anything about this issue.