I have been using Hilary Parker instructions to create R packages and host them at Github. They work great as long as I work locally, which defeats the purpose.
When I import my packages in other computers, other than my own, library(my_package) results in it not being found in the system. The particular system I am trying it on is a Ubuntu 16.10 machine.
install.packages("devtools")
library(devtools)
install_github("lf-araujo/sempsychiatry", force=TRUE)
devtools::install("sempsychiatry")
library("sempsychiatry")
For testing you can try one of the functions:
dependencies(c("dplyr","memisc"))
What am I missing here?