Open verdurin opened 7 years ago
If I commented out everything in ~/.Rprofile
, the build succeeded, including Gviz
.
@verdurin Can you show the contents you had in ~/.Rprofile
?
How can we make R more robust against ~/.Rprofile
? See also https://github.com/hpcugent/easybuild-easyblocks/issues/867?
@boegel here's what I had:
setHook(packageEvent("grDevices", "onLoad"),
function(...) grDevices::X11.options(type='cairo'))
options(device='x11')
which may be imperfect, but it does fix a problem with fonts that was reported locally.
As I said in the earlier report, it's probably cleaner and simpler just to refuse to build if a non-empty ~/.Rprofile
exists.
Try with R --vanilla ...
. That should ignore any user settings.
Building
Bioconductor 3.5
I saw this error with theGviz
extension:I have a setting in
~/.Rprofile
to useCairo
withX11
.Is it expected that
X11
forwarding must be available to build this extension?