You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Slightly easier to maintain and use from a developer standpoint.
E.g.,
cat(
paste0(
"\n\ngreta requires Python and several Python packages ",
"to be installed, but no Python installation was detected.\n",
"You can install Python directly from ",
"https://www.python.org/downloads/ ",
"or with the Anaconda distribution from ",
"https://www.anaconda.com/download/"
)
)
#> #> #> greta requires Python and several Python packages to be installed, but no Python installation was detected.#> You can install Python directly from https://www.python.org/downloads/ or with the Anaconda distribution from https://www.anaconda.com/download/
library(glue)
glue(
" greta requires Python and several Python packages to be installed, but no \\ Python installation was detected. You can install Python directly from https://www.python.org/downloads/ \\ or with the Anaconda distribution from https://www.anaconda.com/download/"
)
#> #> #> greta requires Python and several Python packages to be installed, but no Python installation was detected.#> You can install Python directly from https://www.python.org/downloads/ or with the Anaconda distribution from https://www.anaconda.com/download/
Slightly easier to maintain and use from a developer standpoint.
E.g.,
Created on 2021-04-21 by the reprex package (v2.0.0)
and instead of
You write
The text was updated successfully, but these errors were encountered: