skardhamar / rga

R Google Analytics
187 stars 90 forks source link

Error in parse_repo_spec(repo) : Invalid git repo specification: 'rga' #99

Closed Hutch775 closed 5 years ago

Hutch775 commented 5 years ago

When I try to install using:

install_github('rga', 'skardhamar')

I get the following error:

Error in parse_repo_spec(repo) : Invalid git repo specification: 'rga'

EricGoldsmith commented 5 years ago

That usage of install_github() has been deprecated (though, it used to work, but with a warning). Use this instead:

install_github('skardhamar/rga')

Looks like we need to update the README with that.

Hutch775 commented 5 years ago

Thank you, I now get this error:

Error in curl::curl_fetch_memory(url, handle = h) : Failed to connect to api.github.com port 443: Connection refused

EricGoldsmith commented 5 years ago

A Google search on that error seems to indicate it's due to being behind a corporate proxy server. Is that the case? If so, maybe these instructions from StackOverflow will help.

Hutch775 commented 5 years ago

Many thanks.