其他分享
首页 > 其他分享> > 解决ah <- AnnotationHub()报错

解决ah <- AnnotationHub()报错

作者:互联网

1. 报错内容:

点击查看代码
> ah <- AnnotationHub()
  Cannot connect to AnnotationHub server, using 'localHub=TRUE' instead
  Error in .updateHubDB(hub_bfc, .class, url, proxy, localHub) : 
  Invalid Cache: sqlite file
  Hub has not been added to cache
  Run again with 'localHub=FALSE'

2. 解决方法:

点击查看代码
> Sys.setenv(https_proxy‌‍="")
> Sys.getenv("https_proxy")

> Sys.setenv(http_proxy‌‍="")
> Sys.getenv("http_proxy")

标签:http,ah,getenv,Sys,setenv,报错,proxy,AnnotationHub
来源: https://www.cnblogs.com/-bonjour/p/16363819.html