-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinstall.R
59 lines (48 loc) · 2.25 KB
/
install.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
# Base packages
base_packages <- c("devtools","optparse", "LiblineaR","colorspace","ggplot2","gridExtra","ggplotify","svglite","Rtsne")
# Dependency packages for Windows users
windows_base_packages <- c("Rcpp","methods","foreach","doParallel","TDA","iterators","SparseM","OpenImageR","rdist")
if(.Platform$OS.type == "windows") {
packages_to_install <- c(base_packages,windows_base_packages)
} else {
cat("Warning: Several required packages rely on shared libraries you may have to install via your package manager. See the README for some details.\n\n")
packages_to_install <- base_packages
}
new.packages <- packages_to_install[!(packages_to_install %in% installed.packages()[,"Package"])]
if(length(new.packages)) { install.packages(new.packages) }
if(.Platform$OS.type== "windows") {
install.packages("https://dl.dropboxusercontent.com/s/2vymw7rqn4ud9ei/TDAExplore_1.0.0.0.zip",repos=NULL)
} else {
devtools::install_github("P-Edwards/TDAExplore")
}
# Can put copies of shell scripts somewhere in the path, if desired
copy_to_path <- utils::askYesNo("Would you like to install copies of the TDAExplore scripts into a folder accessible from the command line? Defaults require you install as admin.")
cat(" \n \n")
if(copy_to_path) {
if(.Platform$OS.type=="windows") {
current_path <- file.path(Sys.getenv("ProgramFiles"),"TDAExplore")
ml_executable <- "ml-tda.bat"
convolve_executable <- "convolve-tda.bat"
} else {
current_path <- "/usr/local/bin"
ml_executable <- "ml-tda"
convolve_executable <- "convolve-tda"
}
new_path <- readline(prompt=paste("Install script copies to: (leave blank for default ",current_path,") "))
if(nchar(new_path)>0) {
current_path <- new_path
} else {
# Need to add TDAExplore to PATH on Windows
if(.Platform$OS.type=="windows") {
shell(paste('setx PATH "',normalizePath(current_path),'"',sep=""))
}
}
if(!dir.exists(normalizePath(current_path))) { dir.create(normalizePath(current_path),showWarnings=FALSE) }
# Make sure the scripts are executable and copy everything
if(!(.Platform$OS.type=="windows")) {
Sys.chmod(ml_executable)
Sys.chmod(convolve_executable)
}
file.copy(c(ml_executable,convolve_executable,"landscapes_and_ML.R","convolve_images.R"),current_path,overwrite=TRUE)
print("Done.")
}