简体   繁体   English

在哪里可以获得R版本2.15.2的“ httr”

[英]Where do I get 'httr' for R version 2.15.2

Hi, all. 大家好。 The 'httr' file that CRAN website provides only works on those Rs with versions higher than 3.0. CRAN网站提供的“ httr”文件仅适用于版本高于3.0的Rs。 I have a R version 2.15.2 . 我有一个R版本2.15.2 Where can I get 'httr' for my version of R? 我的R版本在哪里可以获得“ httr”? Thanks! 谢谢!

May I know what is the correct way to achieve my objective? 我可以知道实现目标的正确方法是什么?

Sincerely, Alicia. 真诚的,艾丽西亚。

You can get the old archives of a package from cran. 您可以从cran获取软件包的旧档案。 For httr the archive is at cran.r-project.org/src/contrib/Archive/httr . 对于httr ,存档位于cran.r-project.org/src/contrib/Archive/httr。 For projects on github some developers will have tagged releases. 对于github上的项目,一些开发人员将标记发布。 httr has the following releases https://github.com/hadley/httr/releases . httr具有以下版本https://github.com/hadley/httr/releases You can install a package from github using the install_github function from the devtools package. 您可以使用devtools软件包中的install_github函数从github中安装软件包。

devtools::install_github("hadley/httr", ref = "httr-0.2")

would install the release tagged 'httr-0.2' 将安装标记为“ httr-0.2”的发行版

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 错误:找不到 R 版本 2.15.2 的函数 install_github - error: could not find function install_github for R version 2.15.2 在哪里可以找到 Linux kernel 源代码树的版本? - Where do I find the version of a Linux kernel source tree? twilio 登录 - 我从哪里获得秘密? - twilio login - where do I get the secret? ldd -r -v 如何将版本符号添加到文件中? - ldd -r -v How do I add version symbol to file? 在哪里可以获得用于开发的Exchange服务器? - Where do I get an Exchange server for development? 我在哪里可以获得更多 qtcreator 的小部件? - Where do i get more widgets for qtcreator? 我在哪里可以得到这个 package 的旧版本,因为新版本未能通过我的 Docker 构建? - where can i get older version of this package as new version is failing my Docker build? 如何让R Shiny downloadHandler文件名起作用? - How do I get the R Shiny downloadHandler filename to work? 在哪里可以找到python-2.6.0-8.9.28的xml.dom python软件包,并且我有suse / x86_64版本的Linux版本 - where do I find the xml.dom python package for the python-2.6.0-8.9.28 and I have a suse/x86_64 version of Linux version 如果尚未剥离应用程序版本,如何使用GDB附加到剥离的应用程序获取调试符号? - How do I get debugging symbols using GDB attach to stripped application if i have not stripped application version?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM