Entering edit mode
6.6 years ago
hasani.iut6
▴
60
Hi,
I'm trying to install argyle package to the R in Ubuntu 16.04. first I tried to download per-compiled binary file from git-hub and installing that with the following code to the R:
install.packages("~/Dropbox/pmdvlab/argyle_0.1.tgz", repos = NULL)
installation was Ok but when I tried to load it by library(argyle), I faced with the following error:
Error: package ‘argyle’ was built for x86_64-apple-darwin10.8.0
Then I decided to install it using devtools by the following code:
devtools::install_github("andrewparkermorgan/argyle")
after taking a long time I faced with the following error:
Installation failed: transfer closed with outstanding read data remaining
What shall I do?
My R session info is:
R version 3.4.4 (2018-03-15)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 16.04.1 LTS
Matrix products: default
BLAS: /usr/lib/libblas/libblas.so.3.6.0
LAPACK: /usr/lib/lapack/liblapack.so.3.6.0
locale:
[1] LC_CTYPE=en_US.UTF-8 LC_NUMERIC=C LC_TIME=fa_IR LC_COLLATE=en_US.UTF-8
[5] LC_MONETARY=fa_IR LC_MESSAGES=en_US.UTF-8 LC_PAPER=fa_IR LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C LC_MEASUREMENT=fa_IR LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] plyr_1.8.4 crlmm_1.32.0 preprocessCore_1.36.0 oligoClasses_1.36.0
loaded via a namespace (and not attached):
[1] Rcpp_0.12.16 BiocInstaller_1.24.0 compiler_3.4.4 GenomeInfoDb_1.10.3
[5] XVector_0.14.1 bitops_1.0-6 iterators_1.0.8 tools_3.4.4
[9] zlibbioc_1.20.0 digest_0.6.15 base64_2.0 bit_1.1-12
[13] RSQLite_2.0 memoise_1.1.0 tibble_1.3.3 lattice_0.20-35
[17] ff_2.2-13 rlang_0.1.2 Matrix_1.2-10 foreach_1.4.3
[21] DBI_0.7 parallel_3.4.4 mvtnorm_1.0-6 Biostrings_2.42.1
[25] S4Vectors_0.12.2 IRanges_2.8.2 stats4_3.4.4 bit64_0.9-7
[29] grid_3.4.4 ellipse_0.4.1 Biobase_2.34.0 VGAM_1.0-5
[33] limma_3.30.13 blob_1.1.0 splines_3.4.4 codetools_0.2-15
[37] matrixStats_0.52.2 BiocGenerics_0.20.0 GenomicRanges_1.26.4 beanplot_1.2
[41] SummarizedExperiment_1.4.0 RCurl_1.95-4.8 openssl_0.9.6 RcppEigen_0.3.3.4.0
[45] illuminaio_0.16.0 affyio_1.44.0
That is likely saying that you were not able to completely download the package. You will need to re-try the download.
Original download was built for macOS. Looks like you are not using macOS.
As I told I'm using Ubuntu,
Thank you I will try in the other time,
successful installation on mint linux 18.3 (ubuntu based-base xenial ) about system:
installation log (Rstudio and R- session info below)
session info:
Thank you a lot, I think my problem was because of my internet connection.