Hi,
I'm trying to install the Synapse R Client, followed the directions on the 'Getting Started' page which says to enter the following commands:
```
source("http://depot.sagebase.org/CRAN.R")
pkgInstall("synapseClient")
```
which gives the following errors:
Warning in install.packages :
cannot open URL 'http://depot.sagebase.org/CRAN/prod/3.4/src/contrib/PACKAGES.rds': HTTP status was '404 Not Found'
Warning in install.packages :
cannot open URL 'http://depot.sagebase.org/CRAN/prod/3.4/src/contrib/PACKAGES.gz': HTTP status was '404 Not Found'
Warning in install.packages :
cannot open URL 'http://depot.sagebase.org/CRAN/prod/3.4/src/contrib/PACKAGES': HTTP status was '404 Not Found'
Warning in install.packages :
unable to access index for repository http://depot.sagebase.org/CRAN/prod/3.4/src/contrib:
cannot open URL 'http://depot.sagebase.org/CRAN/prod/3.4/src/contrib/PACKAGES'
Warning in install.packages :
package ?synapseClient? is not available (for R version 3.4.0)
Warning in install.packages :
cannot open URL 'http://depot.sagebase.org/CRAN/prod/3.4/bin/windows/contrib/3.4/PACKAGES.rds': HTTP status was '404 Not Found'
Warning in install.packages :
cannot open URL 'http://depot.sagebase.org/CRAN/prod/3.4/bin/windows/contrib/3.4/PACKAGES.gz': HTTP status was '404 Not Found'
Warning in install.packages :
cannot open URL 'http://depot.sagebase.org/CRAN/prod/3.4/bin/windows/contrib/3.4/PACKAGES': HTTP status was '404 Not Found'
Warning in install.packages :
unable to access index for repository http://depot.sagebase.org/CRAN/prod/3.4/bin/windows/contrib/3.4:
cannot open URL 'http://depot.sagebase.org/CRAN/prod/3.4/bin/windows/contrib/3.4/PACKAGES'
It seems something is wrong with the URL to the source repository. I'm just going to use the python version, but thought I would let the group know.
Created by tjten Hi @TuTu ,
Are you still having trouble? To install the Synapse R Client (synapser) you should use [these instructions](https://github.com/Sage-Bionetworks/synapser#installation):
In short, the command to install is:
```r
install.packages("synapser", repos = c("http://ran.synapse.org", "http://cran.fhcrc.org"))
```
Hello,how you solve the internet limitation? I had a limitation inthernet problem. I got de solution now.
Thanks. Me too. Rstudio donīt let me install synapser package. Any suggestion??,
Thanks,
> install.packages("synapser")
Warning in install.packages :
package ?synapser? is not available (for R version 3.5.0)
if i try with devtools;
> devtools::install_github("Sage-Bionetworks/rSynapseClient")
Installation failed: Timeout was reached: Connection timed out after 10000 milliseconds It looks like the R client hasn't been built for R 3.4. You can use `devtools` to install from GitHub:
```
devtools::install_github("Sage-Bionetworks/rSynapseClient")
```