Skip to content

Commit 8d9afaa

Browse files
committed
Try a different CRAN mirror
1 parent 35f1de9 commit 8d9afaa

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

dev/conda/install-RInside.R

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@
33
# Installs RInside for the Anaconda package
44
# Called by build-generic.sh
55

6+
cat("install-RInside.R: starting...\n")
7+
68
install.packages("RInside",
7-
repos="http://cran.us.r-project.org")
9+
# repos="http://cran.us.r-project.org",
10+
repos="https://cran.case.edu",
11+
verbose=TRUE)
812
if (! library("RInside",
913
character.only=TRUE, logical.return=TRUE)) {
1014
quit(status=1)
1115
}
12-
print("Swift-RInside-SUCCESS")
16+
cat("install-RInside.R: Swift-RInside-SUCCESS\n")

0 commit comments

Comments
 (0)