EmilHvitfeldt / paletteer

🎨🎨🎨 Collection of most color palettes in a single R package
https://emilhvitfeldt.github.io/paletteer/
Other
936 stars 46 forks source link

Issue deploying shiny app to shinyapps.io using paletteer #91

Closed jpmarindiaz closed 4 years ago

jpmarindiaz commented 4 years ago

Hi, when trying to deploy an app that uses paletteer. Shinyapps.io cannot find oompaBase to install. I get this error. Any ideas? Already tried to install oompaBase independently from BioConductor with BiocManager, still no success.

Error: Unhandled Exception: Child Task 728351238 failed: Error parsing manifest: Unable to determine package source for Bioconductor package oompaBase: Repository must be specified
Execution halted

A simple app using paletteer

shinyApp(h2("hello"), function(input,output){library(paletteer)})
EmilHvitfeldt commented 4 years ago

A new version of paletteer hit CRAN today. This version has some of the dependencies moved to suggests making installation easier. Hopefully this should fix the issue :)

jpmarindiaz commented 4 years ago

Thanks, It works now