gesistsa / rio

🐟 A Swiss-Army Knife for Data I/O
http://gesistsa.github.io/rio/
599 stars 76 forks source link

FAQs (read me first if you have problems using this package) #345

Open chainsawriot opened 1 year ago

chainsawriot commented 1 year ago

Q: I cannot install this package on Linux.

A: Probably you don't have the required system dependencies. This package in itself doesn't have system dependencies. But the dependencies do. You might use rang to detect all system dependencies and install them.

require(rang)
#> Loading required package: rang

graph <- resolve("gesistsa/rio",
                 snapshot_date = Sys.time())
graph$sysreqs
#> [1] "apt-get install -y libicu-dev"          
#> [2] "apt-get install -y zlib1g-dev"          
#> [3] "apt-get install -y make"                
#> [4] "apt-get install -y libcurl4-openssl-dev"
#> [5] "apt-get install -y libssl-dev"

Created on 2023-09-06 with reprex v2.0.2

chainsawriot commented 2 months ago

trust argument of import() #432