Questions tagged [remotes]
27 questions
0
votes
0 answers
problem with remotes::install_github("drieslab/GiottoData") or devtools::install_github("drieslab/GiottoData")
I have python and Giotto installed on my Mac M1 chip laptop.
When I try to install another package called "GiottoData" using any of the below three methods: I get this error:
remotes::install_github("drieslab/GiottoData")
#Error: package ‘Giotto’…
0
votes
1 answer
how do I add private dependency to DESCRIPTION file for R dev package?
I have built a new package (let's call it myNewPackage) in R, which uses a private package (let's call it privatePackage) stored in my company's bitbucket repo.
Based on some replies I have found on Google (including this), I have understood that I…

GNicoletti
- 192
- 2
- 17
0
votes
0 answers
github: merge master to feature branch, then push feature branch, merge to master?
I have a question about github:
1. create a new feature branch locally: fb and work on it.
2. At the same time, other people may work on master, or work on their feature branches and merge to master. So master branch keeps changing.
3. I finish the…

Feng Chen
- 2,139
- 4
- 33
- 62
0
votes
0 answers
remotes:: install_github ! System command 'R' failed UBUNTU 22
I am trying to install a development version of a package from github using:
remotes::install_github(
repo = "xxxxxx",
ref = "development",
auth_token = "xxxxxx",
dependencies = FALSE,
force = TRUE)
however I get this error:
Offending…

i.b
- 167
- 11
0
votes
1 answer
How to include subdirectory in `Remotes` field for R package `DESCRIPTION`
Let's say I want to use in my R package a development version of a dependency as it stands on a certain GitHub branch, but the additional complication is that it resides in a subdirectory.
For example, if I wanted to rely on the glmmTMB package from…

Indrajeet Patil
- 4,673
- 2
- 20
- 51
0
votes
1 answer
Find installed package SHA hash in R
I have installed a package from GitHub in R long ago using remotes::install_github. Since then, the package has had several new commits, and all the commits have the same package version. I want to find out which GitHub commit was the one I…

vahid-dan
- 252
- 2
- 8
0
votes
0 answers
Suppress remotes::install_github messages
I have to install one package - ggpattern - through github with remotes::install_github("coolbutuseless/ggpattern"
For all other packages I install/load through CRAN, I suppress any and all messages with suppressWarnings() and suppressMessages(),…

Anke
- 527
- 1
- 6
- 19
0
votes
0 answers
Cannot install packages from Github in R
this week I formatted my SSD and everything was fine, but now... when I am trying to install a package from Github, using both packages: devtools and remotes. But I am getting the following error.
>…

Gabriel Arruda
- 1
- 1
0
votes
1 answer
How to install R packages when github is blocked using papaja as an example
I thought I would post this as an answer to anyone having problems installing papaja (or other packages) when behind a firewall that doesn't allow github
The problem
For reasons I dont fully understand, the only way I am able to use github R…

Sebastian Zeki
- 6,690
- 11
- 60
- 125
0
votes
1 answer
Prevent automatic installation of packages referred to in Remotes in DESCRIPTION file for R packages
We have an organisational GitLab server where we store some internal packages. For packageA stored on GitLab to depend on another package (packageB) stored on GitLab we have the equivalent lines in packageA's DESCRIPTION file:
Imports:
…

Seb
- 13
- 3
0
votes
1 answer
R devtools and packages dependencies in DESCRIPTION Remotes
I would like to use a dev version of a package in my own package.
As detailed in devtools vignette, I included the following line of code in the DESCRIPTION file of my package:
Remotes: SciViews/svDialogs
tried also:
Remotes:…

c1au61o_HH
- 867
- 7
- 14
-1
votes
1 answer
How to undo deleting a remote Git branch?
I've removed a remote Git branch (and the local remote-tracking branch) using the command:
git push origin --delete
How do I undo this action?

planetp
- 14,248
- 20
- 86
- 160