First let me preface this with the disclaimer that I\'m new to R, but a longtime Python power user. Given that I love the conda ecosystem and the Jupyter notebook, I\'m try
You can add .libPaths('path_where_your_packages_are')
in a code cell at the beginning of your notebook to tell jupyter where your packages are. For me that was .libPaths('~/R/win-library/3.2')
(work-around from discnerd who filed this issue on github).
To find out the path to your packages, just install a random package in R and wait for the location to be printed to the console.
More details (likely specific to my system/installations): When running .libPaths()
in R, I got 2 locations: one for which admin rights were required for writing, and one for which admin rights were not required for writing. While packages installed through R land in the location where admin rights are not required, jupyter looks at the location where admin rights are required.