I have created a custom package and would like to deploy it to a remote machine. Here is my current long workflow:
- Create custom package 'my_package_0.1.0.tar.gz'
- scp package to remote machine
- create Remote session
install.packages("/path/to/my_package0.1.0.tar.gz")
library('my_package')
When others connect to the machine, they have to run install and library:
install.packages("/path/to/my_package0.1.0.tar.gz")
library('my_package')
Is there a way I can share a custom package and have the workflow be:
- Create remote session
- Load package with
library('my_package')