本文介绍了无法在Windows上安装Processer和ProcesR的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这个问题之后,我正在尝试安装软件包(在Windows上以admin身份运行R64):

Following this question, I am trying to install the package (running R64 as admin on Windows):

devtools::install_github("markhwhiteii/processr")

devtools::install_github("cardiomoon/processR")

但是,我收到错误消息:

However, I get the error message:

无论我选择哪个更新选项.运行命令.libPaths(),我找到了软件包安装文件夹C:/Program Files/R/R-3.6.2/library,并手动删除了digest软件包,并使用package.install("digest")重新安装了它.但是我仍然遇到同样的错误!如果您能帮助我了解问题所在以及如何解决,我将不胜感激.

no matter which update option I select. Running the command .libPaths() I found the packages installation folder C:/Program Files/R/R-3.6.2/library and manually deleted the digest package and reinstalled it with package.install("digest"). But I still get the same error! I would appreciate it if you could help me understand what is the problem and how I can resolve it.

推荐答案

安装markhwhiteii/processr软件包的步骤:

  • install.packages("devtools")
  • library(devtools)
  • install.packages("https://github.com/markhwhiteii/processr/archive/master.tar.gz")
  • install.packages("devtools")
  • library(devtools)
  • install.packages("https://github.com/markhwhiteii/processr/archive/master.tar.gz")

用于测试安装:

  • library(processr)
  • processr::model1
  • library(processr)
  • processr::model1

在GitHub存储库上发送公关.

Sent a PR on the GitHub repo.

,如果您想在Jupyter环境中运行R,请遵循说明进行安装和注册内核:

and if you want to run R in the Jupyter environment just follow the instructions to install and regsiter the kernel:

  • install.packages('IRkernel')
  • IRkernel::installspec()
  • install.packages('IRkernel')
  • IRkernel::installspec()

这篇关于无法在Windows上安装Processer和ProcesR的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 16:45