gstudio icon indicating copy to clipboard operation
gstudio copied to clipboard

Installation hangs with "testing if installed package can be loaded from temporary location"

Open hernanmd opened this issue 4 years ago • 5 comments

Installation hangs while testing package loading of "dyerlab/gstudio" using macOS highSierra with latest R as of 04-06-2020 (4.0.0). The expressions used for installation are :

install.packages( c("RgoogleMaps",
                    "geosphere",
                    "proto",
                    "sampling",
                    "seqinr",
                    "spacetime",
                    "spdep"), 
                  dependencies=TRUE )
install.packages("devtools")
library(devtools)
install_github("dyerlab/popgraph")
install_github("dyerlab/gstudio")

Last lines of installation console reports:

─  preparing ‘gstudio’:
✓  checking DESCRIPTION meta-information ...
─  checking for LF line-endings in source and make files and shell scripts
─  checking for empty or unneeded directories
─  looking to see if a ‘data/datalist’ file should be added
─  building ‘gstudio_1.5.2.tar.gz’
   
* installing *source* package ‘gstudio’ ...
** using staged installation
** R
** data
** inst
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** installing vignettes
** testing if installed package can be loaded from temporary location

hernanmd avatar Jun 03 '20 20:06 hernanmd

So can you install these packages by themselves? Which one stops and what are the error messages?

Rodney J. Dyer, PhD Director, Center for Environmental Studies https://ces.vcu.edu/ Virginia Commonwealth University http://dyerlab.com

On Wed, Jun 3, 2020 at 4:32 PM Hernán Morales Durand < [email protected]> wrote:

Installation hangs while testing package loading of "dyerlab/gstudio" using macOS highSierra with latest R as of 04-06-2020 (4.0.0). The expressions used for installation are :

install.packages( c("RgoogleMaps", "geosphere", "proto", "sampling", "seqinr", "spacetime", "spdep"), dependencies=TRUE ) install.packages("devtools") library(devtools) install_github("dyerlab/popgraph") install_github("dyerlab/gstudio")

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/dyerlab/gstudio/issues/12, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA5B3TQTRE5PWFCWMY2XPF3RU2TVNANCNFSM4NR7JAJQ .

dyerlab avatar Jun 08 '20 20:06 dyerlab

There are no error messages, installation hangs meaning R does not respond anymore and I should terminate R manually from another shell command line terminal. The line which causes the hang is:

install_github("dyerlab/gstudio")

Maybe you could output your R and package versions to check which dependencies are currently working for gstudio?

Anyway this should be reproducible with R as of 04-06-2020 (4.0.0).

hernanmd avatar Jun 09 '20 00:06 hernanmd

To clarify, all package dependencies were installed successfully, i.e. no error messages. The hang problem only occurs during the evaluation of :

install_github("dyerlab/gstudio")

hernanmd avatar Jun 18 '20 00:06 hernanmd

So, nothing happens? No messages, nothing?

-- Rodney J. Dyer, PhD Director, Center for Environmental Studies https://ces.vcu.edu/ Virginia Commonwealth University http://dyerlab.com

On Wed, Jun 17, 2020 at 8:27 PM Hernán Morales Durand < [email protected]> wrote:

To clarify, all package dependencies were installed successfully, i.e. no error messages. The hang problem only occurs during the evaluation of :

install_github("dyerlab/gstudio")

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/dyerlab/gstudio/issues/12#issuecomment-645696678, or unsubscribe https://github.com/notifications/unsubscribe-auth/AA5B3TVSVZHJ2MPCQ3HBXTLRXFNNDANCNFSM4NR7JAJQ .

dyerlab avatar Jun 18 '20 16:06 dyerlab

Exactly, maybe you could let us know which package versions you're using in your working environment?

ip <- as.data.frame(installed.packages()[,c(1,3:4)])
rownames(ip) <- NULL
ip <- ip[is.na(ip$Priority),1:2,drop=FALSE]
print(ip, row.names=FALSE)

and

sessionInfo()

hernanmd avatar Jun 18 '20 20:06 hernanmd