How do I install a user created package in RStudio Cloud?

Is the package on Github or another version-control support site like Gitlab? If so you can take advantage of the appropriate function in remotes:

remotes::install_github("user_name/package_name")

If you have the zipped binary file available (uploaded to the RStudio Cloud instance) you could install it via:

install.packages("/path/to/package.zip", repos=NULL)

Hope that helps.

3 Likes

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.