I'm using the arrow package to read parquet files into my shiny app, which works well locally. However, when trying to deploy the app on shinyapps.io, I get the following installation error:
IOError: NotImplemented: Support for codec 'snappy' not built In order to read this file, you will need to reinstall arrow with additional features enabled. Set one of these environment variables before installing:
- LIBARROW_MINIMAL=false
- ARROW_WITH_SNAPPY=ON See https://arrow.apache.org/docs/r/articles/install.html
The message is very clear, but I haven't been able to pass those environment variables to the shinyapps.io server. I've tried uploading .bashrc and .Renviron files with appropriate environment variables set, but neither worked, and reading the mentioned article didn't help me, either.
I'd greatly appreciate any suggestions or explanations for how to proceed.