Should I ignore this problem with regard to going forward with a submission to
CRAN?
It looks like some CRAN packages that I am dependent on are not available on
the Ubuntu Linux 16.04 LTS platform.
#> Failed with error: ‘there is no package called ‘shiny’’
#> ERROR: dependency ‘openssl’ is not
On 8 November 2019 at 10:14, R. Mark Sharp wrote:
| Should I ignore this problem with regard to going forward with a submission
to CRAN?
|
| It looks like some CRAN packages that I am dependent on are not available on
the Ubuntu Linux 16.04 LTS platform.
|
| #> Failed with error: ‘there is no
It would help if you shared your source code, so we know what you've tried.
Presumably, you need to either export the variables you're setting, or
just pass them along when invoking CMake. For example:
ENVVAR=1
export ENVVAR
cmake <...>
or
ENVVAR=1 cmake <...>
Best,
Kevin
On T