I started using conda environments. I know that I can open and use R jupiter notebook, but my preferred workflow is to use R within a python notebook, when necessary, with rpy2 and push/pull data between the two languages
%R push data
%R run something
%R pull output
however now when I run rpy2 in a conda environment, it searches for all packages in the R folder within the conda environment. I would like to use the packages installed in my home directory or those from the machine I work on, without the need to reinstall everything for each conda environment. Is that possible?