How to instal rpy2 on mac OS - Library not loaded:











up vote
3
down vote

favorite
1












This is proving to be very difficult on mac os and python3.



Below is are the paths for R. I have them and pointed to them. So why the problem?



From the command line:



1) which R



   /usr/local/bin/R


2) R RHOME



/Library/Frameworks/R.framework/Resources


In python:



    import os,sys
sys.path.append('/usr/local/bin/R')
sys.path.append('/Library/Frameworks/R.framework/Resources')
os.environ['R_HOME'] = '/usr/local/bin/R'

import rpy2.robjects as robjects

from rpy2.rinterface._rinterface import (baseenv,
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/rpy2/rinterface/_rinterface.cpython-36m-darwin.so, 2): Library not loaded: /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libR.dylib
Referenced from: /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/rpy2/rinterface/_rinterface.cpython-36m-darwin.so
Reason: image not found


Here is the rpy2 version:



import rpy2
print(rpy2.__version__)
2.9.4


How I installed:



 pip3 install rpy2


Mac Version:



 10.14 Mojave


python3 version:



  which python3
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3


R version:



R --version
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin15.6.0 (64-bit)









share|improve this question
























  • So, you've focused on R being the issue but you haven't told us anything about the Python configuration. how you installed it? etc. There's a guess due to the error but my python 3.7 is not in /Library. We also don't know your macOS version. I grok the frustration (Python is the source of most if not all evil in the universe) but I think you need to provide more info to get aid.
    – hrbrmstr
    Nov 13 at 2:53















up vote
3
down vote

favorite
1












This is proving to be very difficult on mac os and python3.



Below is are the paths for R. I have them and pointed to them. So why the problem?



From the command line:



1) which R



   /usr/local/bin/R


2) R RHOME



/Library/Frameworks/R.framework/Resources


In python:



    import os,sys
sys.path.append('/usr/local/bin/R')
sys.path.append('/Library/Frameworks/R.framework/Resources')
os.environ['R_HOME'] = '/usr/local/bin/R'

import rpy2.robjects as robjects

from rpy2.rinterface._rinterface import (baseenv,
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/rpy2/rinterface/_rinterface.cpython-36m-darwin.so, 2): Library not loaded: /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libR.dylib
Referenced from: /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/rpy2/rinterface/_rinterface.cpython-36m-darwin.so
Reason: image not found


Here is the rpy2 version:



import rpy2
print(rpy2.__version__)
2.9.4


How I installed:



 pip3 install rpy2


Mac Version:



 10.14 Mojave


python3 version:



  which python3
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3


R version:



R --version
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin15.6.0 (64-bit)









share|improve this question
























  • So, you've focused on R being the issue but you haven't told us anything about the Python configuration. how you installed it? etc. There's a guess due to the error but my python 3.7 is not in /Library. We also don't know your macOS version. I grok the frustration (Python is the source of most if not all evil in the universe) but I think you need to provide more info to get aid.
    – hrbrmstr
    Nov 13 at 2:53













up vote
3
down vote

favorite
1









up vote
3
down vote

favorite
1






1





This is proving to be very difficult on mac os and python3.



Below is are the paths for R. I have them and pointed to them. So why the problem?



From the command line:



1) which R



   /usr/local/bin/R


2) R RHOME



/Library/Frameworks/R.framework/Resources


In python:



    import os,sys
sys.path.append('/usr/local/bin/R')
sys.path.append('/Library/Frameworks/R.framework/Resources')
os.environ['R_HOME'] = '/usr/local/bin/R'

import rpy2.robjects as robjects

from rpy2.rinterface._rinterface import (baseenv,
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/rpy2/rinterface/_rinterface.cpython-36m-darwin.so, 2): Library not loaded: /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libR.dylib
Referenced from: /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/rpy2/rinterface/_rinterface.cpython-36m-darwin.so
Reason: image not found


Here is the rpy2 version:



import rpy2
print(rpy2.__version__)
2.9.4


How I installed:



 pip3 install rpy2


Mac Version:



 10.14 Mojave


python3 version:



  which python3
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3


R version:



R --version
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin15.6.0 (64-bit)









share|improve this question















This is proving to be very difficult on mac os and python3.



Below is are the paths for R. I have them and pointed to them. So why the problem?



From the command line:



1) which R



   /usr/local/bin/R


2) R RHOME



/Library/Frameworks/R.framework/Resources


In python:



    import os,sys
sys.path.append('/usr/local/bin/R')
sys.path.append('/Library/Frameworks/R.framework/Resources')
os.environ['R_HOME'] = '/usr/local/bin/R'

import rpy2.robjects as robjects

from rpy2.rinterface._rinterface import (baseenv,
ImportError: dlopen(/Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/rpy2/rinterface/_rinterface.cpython-36m-darwin.so, 2): Library not loaded: /Library/Frameworks/R.framework/Versions/3.5/Resources/lib/libR.dylib
Referenced from: /Library/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site-packages/rpy2/rinterface/_rinterface.cpython-36m-darwin.so
Reason: image not found


Here is the rpy2 version:



import rpy2
print(rpy2.__version__)
2.9.4


How I installed:



 pip3 install rpy2


Mac Version:



 10.14 Mojave


python3 version:



  which python3
/Library/Frameworks/Python.framework/Versions/3.6/bin/python3


R version:



R --version
R version 3.4.4 (2018-03-15) -- "Someone to Lean On"
Copyright (C) 2018 The R Foundation for Statistical Computing
Platform: x86_64-apple-darwin15.6.0 (64-bit)






python r python-3.x python-3.6 rpy2






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 13 at 4:02

























asked Nov 13 at 2:43









Tampa

20.4k89197314




20.4k89197314












  • So, you've focused on R being the issue but you haven't told us anything about the Python configuration. how you installed it? etc. There's a guess due to the error but my python 3.7 is not in /Library. We also don't know your macOS version. I grok the frustration (Python is the source of most if not all evil in the universe) but I think you need to provide more info to get aid.
    – hrbrmstr
    Nov 13 at 2:53


















  • So, you've focused on R being the issue but you haven't told us anything about the Python configuration. how you installed it? etc. There's a guess due to the error but my python 3.7 is not in /Library. We also don't know your macOS version. I grok the frustration (Python is the source of most if not all evil in the universe) but I think you need to provide more info to get aid.
    – hrbrmstr
    Nov 13 at 2:53
















So, you've focused on R being the issue but you haven't told us anything about the Python configuration. how you installed it? etc. There's a guess due to the error but my python 3.7 is not in /Library. We also don't know your macOS version. I grok the frustration (Python is the source of most if not all evil in the universe) but I think you need to provide more info to get aid.
– hrbrmstr
Nov 13 at 2:53




So, you've focused on R being the issue but you haven't told us anything about the Python configuration. how you installed it? etc. There's a guess due to the error but my python 3.7 is not in /Library. We also don't know your macOS version. I grok the frustration (Python is the source of most if not all evil in the universe) but I think you need to provide more info to get aid.
– hrbrmstr
Nov 13 at 2:53

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53273027%2fhow-to-instal-rpy2-on-mac-os-library-not-loaded%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53273027%2fhow-to-instal-rpy2-on-mac-os-library-not-loaded%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

How to change which sound is reproduced for terminal bell?

Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

Can I use Tabulator js library in my java Spring + Thymeleaf project?