12

I have this error:

'someFunction' is not an exported object from 'namespace:somePackage'

Does anyone know how to solve it?

zx8754
  • 52,746
  • 12
  • 114
  • 209

1 Answers1

13

Some reasons:

  • Function is not part of the package, anymore, try ??someFunction to find out which package it belongs to.
  • Package data is not part of the package
  • Function is available in newer version of the package, reinstall latest version.

See also these questions referring to specific instances of this problem:

zx8754
  • 52,746
  • 12
  • 114
  • 209
  • similar: `oob_squish` not found in scales version 1.1.0, but is found in 1.1.1. Does this require a shiny server restart when a new package version is installed? – Brian D Jul 15 '20 at 21:07
  • Yes. shiny server restart required for new package version (and related functions) to be recognized. – Brian D Jul 15 '20 at 21:14