-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to install package with private Git remotes #795
Comments
Can you try using r-lib/pak instead of remotes? It will require you to use a |
If possible, I want to avoid using https git remotes as it would require changes in the rest of my build environment. Is there no fix for using SSH remotes? |
IDK, it does not fail for me for private repos:
|
|
An update on this: converting to |
I'm developing a package using
renv
and it depends on other packages in private Github repositories. These are accessed via SSH and installed withrenv::install('[email protected]:myorg/mypkg.git')
. While this works fine for development purposes, the package will not install (e.g.devtools::install()
) and fails with the following message:Here's a traceback:
the relevant parts of the session info:
and the relevant bits of the DESCRIPTION file for the package that's being developed:
Any idea how to resolve this?
The text was updated successfully, but these errors were encountered: