Advertisement
Guest User

Untitled

a guest
Jul 24th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.13 KB | None | 0 0
  1. david@puck~/Downloads> scp acorg:/syn/eu/R/acmacs.r_3.6_R_x86_64-pc-linux-gnu.tar.gz .
  2. acmacs.r_3.6_R_x86_64-pc-linux-gnu.tar.gz 100% 22MB 437.6KB/s 00:52
  3. david@puck~/Downloads> R
  4.  
  5. R version 3.6.1 (2019-07-05) -- "Action of the Toes"
  6. Copyright (C) 2019 The R Foundation for Statistical Computing
  7. Platform: x86_64-pc-linux-gnu (64-bit)
  8.  
  9. R is free software and comes with ABSOLUTELY NO WARRANTY.
  10. You are welcome to redistribute it under certain conditions.
  11. Type 'license()' or 'licence()' for distribution details.
  12.  
  13. Natural language support but running in an English locale
  14.  
  15. R is a collaborative project with many contributors.
  16. Type 'contributors()' for more information and
  17. 'citation()' on how to cite R or R packages in publications.
  18.  
  19. Type 'demo()' for some demos, 'help()' for on-line help, or
  20. 'help.start()' for an HTML browser interface to help.
  21. Type 'q()' to quit R.
  22.  
  23. >
  24. >
  25. > remove.packages("acmacs.r")
  26. Removing package from ‘/usr/local/lib/R/site-library’
  27. (as ‘lib’ is unspecified)
  28. >
  29. >
  30. > library("acmacs.r")
  31. Error in library("acmacs.r") : there is no package called ‘acmacs.r’
  32. >
  33. >
  34. > install.packages("./acmacs.r_3.6_R_x86_64-pc-linux-gnu.tar.gz", repos=NULL, type="source")
  35. Installing package into ‘/usr/local/lib/R/site-library’
  36. (as ‘lib’ is unspecified)
  37. * installing *binary* package ‘acmacs.r’ ...
  38. * DONE (acmacs.r)
  39. >
  40. >
  41. > library("acmacs.r")
  42.  
  43. *** caught segfault ***
  44. address 0x4b, cause 'memory not mapped'
  45.  
  46. Traceback:
  47. 1: .External(list(name = "InternalFunction_invoke", address = <pointer: 0x56324364dc90>, dll = list(name = "Rcpp", path = "/usr/local/lib/R/site-library/Rcpp/libs/Rcpp.so", dynamicLookup = TRUE, handle = <pointer: 0x563244d27d10>, info = <pointer: 0x5632423eaae0>), numParameters = -1L), <pointer: 0x563244408480>)
  48. 2: acmacs.__init()
  49. 3: fun(libname, pkgname)
  50. 4: doTryCatch(return(expr), name, parentenv, handler)
  51. 5: tryCatchOne(expr, names, parentenv, handlers[[1L]])
  52. 6: tryCatchList(expr, classes, parentenv, handlers)
  53. 7: tryCatch(fun(libname, pkgname), error = identity)
  54. 8: runHook(".onAttach", ns, dirname(nspath), nsname)
  55. 9: attachNamespace(ns, pos = pos, deps, exclude, include.only)
  56. 10: doTryCatch(return(expr), name, parentenv, handler)
  57. 11: tryCatchOne(expr, names, parentenv, handlers[[1L]])
  58. 12: tryCatchList(expr, classes, parentenv, handlers)
  59. 13: tryCatch({ attr(package, "LibPath") <- which.lib.loc ns <- loadNamespace(package, lib.loc) env <- attachNamespace(ns, pos = pos, deps, exclude, include.only)}, error = function(e) { P <- if (!is.null(cc <- conditionCall(e))) paste(" in", deparse(cc)[1L]) else "" msg <- gettextf("package or namespace load failed for %s%s:\n %s", sQuote(package), P, conditionMessage(e)) if (logical.return) message(paste("Error:", msg), domain = NA) else stop(msg, call. = FALSE, domain = NA)})
  60. 14: library("acmacs.r")
  61.  
  62. Possible actions:
  63. 1: abort (with core dump, if enabled)
  64. 2: normal R exit
  65. 3: exit R without saving workspace
  66. 4: exit R saving workspace
  67. Selection: 1
  68. R is aborting now ...
  69. fish: “R” terminated by signal SIGSEGV (Address boundary error)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement