%load_ext rpy2.ipython 找不到图像错误
%load_ext rpy2.ipython Image not found error
我正在尝试使用 ipython 中的魔术命令,这是我在这里看到的:
rpy2 slides
我做了以下事情:
import rpy2.ipython
%load_ext rpy2.ipython
但我收到以下错误:
ImportError: dlopen(/Users/XXX/anaconda/lib/python2.7/site-packages/rpy2/rinterface/_rinterface.so,
2): Library not loaded: libicuuc.54.dylib
Referenced from: /Users/XXX/anaconda/lib/python2.7/site-packages/rpy2/rinterface/_rinterface.so
Reason: image not found
一些相关信息:
- OS:MacOS Sierra
- Python: 2.7.12
- iPython: IPython 5.1.0
- rpy2: 2.8.3
- 做了
pip install singledispatch
但错误仍然存在
- r 使用 conda 安装
- 还有一份来自 CRAN 的 R 副本
因为我是通过conda安装R的,所以我还需要通过conda而不是通过pip安装rpy2。要通过 conda 安装 rpy2,请执行以下操作,
conda install -c r rpy2
这非常有效。但是不清楚为什么通过pip安装rpy2不行。
我正在尝试使用 ipython 中的魔术命令,这是我在这里看到的: rpy2 slides
我做了以下事情:
import rpy2.ipython
%load_ext rpy2.ipython
但我收到以下错误:
ImportError: dlopen(/Users/XXX/anaconda/lib/python2.7/site-packages/rpy2/rinterface/_rinterface.so,
2): Library not loaded: libicuuc.54.dylib Referenced from: /Users/XXX/anaconda/lib/python2.7/site-packages/rpy2/rinterface/_rinterface.so Reason: image not found
一些相关信息:
- OS:MacOS Sierra
- Python: 2.7.12
- iPython: IPython 5.1.0
- rpy2: 2.8.3
- 做了
pip install singledispatch
但错误仍然存在 - r 使用 conda 安装
- 还有一份来自 CRAN 的 R 副本
因为我是通过conda安装R的,所以我还需要通过conda而不是通过pip安装rpy2。要通过 conda 安装 rpy2,请执行以下操作,
conda install -c r rpy2
这非常有效。但是不清楚为什么通过pip安装rpy2不行。