Hey, RStudio community!
So I've finally gotten RStudio downloaded and working on my Pixelbook using the Linux beta (3.6.0 and newest version of RStudio).
I opened up Rstudio and then tried to install tidyverse- the process was taking almost twenty minutes so I tried to quit Rstudio which then took another few minutes to shut down.
I then opened the app up to try again but now it shows that the tidyverse packages are present on the side. I tried to use library(tidyverse) but it says that there is no package with that name. I was able to use library(ggplot2) and library(tibble).
Did these packages install correctly without tidyverse actually installing? I've used RStudio before but only on windows systems and my Linux experience thus far has been difficult. When I had installed packages like tidyverse in the past on Windows systems it never took longer than a few minutes and always actually ended in console output. I appreciate any clarity you can offer me!
EDIT: I quit the installing of readr because I saw it in the package list. Then the console restored the previous thing right before I did library(tidyverse).
UPDATE: So I tried to install sparklyr and am stuck in a similar endless stream of console output... I can't link the output because it is constantly adding and scrolling and I can no longer scroll to the top of the output. Is anyone familiar with this?
Here is all of the console output from this session:
install.packages("ggplot2")
Installing package into ‘/home/ishan16d/R/x86_64-pc-linux-gnu-library/3.6’
(as ‘lib’ is unspecified)
trying URL 'https://cloud.r-project.org/src/contrib/ggplot2_3.2.0.tar.gz'
Content type 'application/x-gzip' length 3193995 bytes (3.0 MB)
==================================================
downloaded 3.0 MB
* installing *source* package ‘ggplot2’ ...
** package ‘ggplot2’ successfully unpacked and MD5 sums checked
** using staged installation
** R
** data
*** moving datasets to lazyload DB
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
*** copying figures
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location
** testing if installed package can be loaded from final location
** testing if installed package keeps a record of temporary installation path
* DONE (ggplot2)
The downloaded source packages are in
‘/tmp/RtmpzpUVJ5/downloaded_packages’
> install.packages("readr")
Installing package into ‘/home/ishan16d/R/x86_64-pc-linux-gnu-library/3.6’
(as ‘lib’ is unspecified)
trying URL 'https://cloud.r-project.org/src/contrib/readr_1.3.1.tar.gz'
Content type 'application/x-gzip' length 268853 bytes (262 KB)
==================================================
downloaded 262 KB
* installing *source* package ‘readr’ ...
** package ‘readr’ successfully unpacked and MD5 sums checked
** using staged installation
** libs
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I"/home/ishan16d/R/x86_64-pc-linux-gnu-library/3.6/Rcpp/include" -I"/home/ishan16d/R/x86_64-pc-linux-gnu-library/3.6/BH/include" -I. -Ircon -fpic -g -O2 -fdebug-prefix-map=/home/jranke/git/r-backports/stretch/r-base-3.6.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c Collector.cpp -o Collector.o
g++ -std=gnu++11 -I"/usr/share/R/include" -DNDEBUG -I"/home/ishan16d/R/x86_64-pc-linux-gnu-library/3.6/Rcpp/include" -I"/home/ishan16d/R/x86_64-pc-linux-gnu-library/3.6/BH/include" -I. -Ircon -fpic -g -O2 -fdebug-prefix-map=/home/jranke/git/r-backports/stretch/r-base-3.6.0=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -g -c CollectorGuess.cpp -o CollectorGuess.o
/usr/lib/R/etc/Makeconf:176: recipe for target 'CollectorGuess.o' failed
make: *** [CollectorGuess.o] Interrupt
ERROR: compilation failed for package ‘readr’
* removing ‘/home/ishan16d/R/x86_64-pc-linux-gnu-library/3.6/readr’
* restoring previous ‘/home/ishan16d/R/x86_64-pc-linux-gnu-library/3.6/readr’
> library(tidyverse)
Error in library(tidyverse) : there is no package called ‘tidyverse’
> library(ggplot2)