在RStudio中安装XLConnect时出错

时间:2014-07-04 14:30:54

标签: windows-7 rstudio xlconnect

提前致谢。 我正在尝试安装XLConnect包。我正在使用RStudio。为了您的信息,安装了rJava。

这是我在R中的命令和错误消息:

  

install.packages( “XLConnect”)

尝试网址“http://cran.rstudio.com/bin/windows/contrib/3.1/XLConnect_0.2-7.zip” 内容类型'application / zip'长度17997942字节(17.2 Mb) 打开网址 下载了16.7 Mb

install.packages中的警告:已下载长度17473536!=报告的长度17997942

install.packages中的警告:从zip文件中提取错误1

install.packages中的警告:无法打开压缩文件'XLConnect / DESCRIPTION',可能的原因'没有这样的文件或目录'

install.packages错误:无法打开连接

3 个答案:

答案 0 :(得分:0)

警告表明有些内容正在破坏软件包下载。通常原因是企业防火墙。您可能需要咨询您的IT是否是这种情况。

答案 1 :(得分:0)

尝试使用标准R进行安装,标准R将告诉您保存包zip文件的位置。然后,您可以通过从本地zip文件安装包来使用RStudio进行安装。

答案 2 :(得分:0)

我在下载一些软件包时遇到了类似的问题。尝试使用

重新安装软件包

import UIKit class ViewController: UIViewController, UITableViewDataSource, UITableViewDelegate { @IBOutlet weak var tableView: UITableView! let tableData = ["1","2","3","4"] override func viewDidLoad() { super.viewDidLoad() tableView.dataSource = self tableView.delegate = self tableView.registerClass(UITableViewCell.self, forCellReuseIdentifier: "cell") } func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int{ return tableData.count } func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell{ var cell:UITableViewCell = tableView.dequeueReusableCellWithIdentifier("cell") as! UITableViewCell cell.textLabel?.text = self.tableData[indexPath.row] return cell } }

查看是否有效,如果长度不匹配的问题仍然存在,请卸载RStudio并重新安装。

这似乎对我有用。