我以前在我的电脑上安装了rpy2,使用了来自的合适的轮子。但是,现在我需要升级到最新版本的rpy2。我做了以下工作:
pip install rpy2 --upgrade
但这没有成功,给了我以下错误:
ERROR: Command errored out with exit status 1: python setup.py egg_info Check the logs for full command output.
这个错误在我第一次尝试安装rpy2时弹出,最后从下载了预编译的二进制文件。
在我的系统环境变量中有:
C:\Users\96171\AppData\Local\Pro
我试过他的;rpy2安装错误,但也没什么用。我试过很多次!请帮帮我!
Collecting rpy2
Using cached rpy2-2.9.2.tar.gz
Complete output from command python setup.py egg_info:
rpy2 is no longer supporting Python < 3. Consider using an older rpy2 release when using an older Python release.
---------------
我正在使用基于Debian的Linux,并试图用pip3安装rpy2。
当类型:
sudo pip3 install rpy2
我得到了
user@huayra:~$ sudo pip3 install rpy2
Collecting rpy2
Using cached rpy2-2.9.2.tar.gz
Complete output from command python setup.py egg_info:
Error: Tried to guess R's HOME but no command 'R' in the PATH.
----
Python3.7.3,rpy2 3.2.0,下面的代码:
from rpy2 import robjects
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ".virtualenvs/flask3/lib/python3.7/site-packages/rpy2/robjects/__init__.py", line 14, in <module>
import rpy2.rinterface as ri
寻找关于在python脚本中使用来自WSL的vscode的rpy2的帮助。我无法启动导入。 如果我尝试运行以下代码: import rpy2
print(rpy2.__version__) 我得到以下AttributeError: AttributeError: partially initialized module 'rpy2' has no attribute '__version__' (most likely due to a circular import) 如果我尝试import rpy2.rpackages,我得到以下错误: ModuleNo
试图通过以下方式在Mac塞拉利昂上安装rpy2
sudo pip install rpy2
在命令行上。获取此错误:
The directory '/Users/hodor/Library/Caches/pip/http' or its parent directory is not owned by the current user and the cache has been disabled. Please check the permissions and owner of that directory. If executing pip with sudo, you
尝试加载时出现以下错误
>>> from rpy2 import robjects
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python26\lib\site-packages\rpy2\robjects\__init__.py", line 14, in <m
odule>
import rpy2.rinterface as rinterface
File "C
在我的计算机上使用pip to install rpy2时,我得到了这个错误:
C:\Python27\Scripts>pip install rpy2
Collecting rpy2
Using cached rpy2-2.8.2.tar.gz
Complete output from command python setup.py egg_info:
Warning: Tried to guess R's HOME but no command (R) in the PATH.
----------------------------------
我尝试在conda环境中的Mac上安装最新版本的rpy2,方法是进入Conda Navigator中的环境,单击我的环境,然后搜索rpy2。但是,这个最新版本没有显示出来。 我还尝试通过终端进行安装,使用: pip install rpy2 这将生成以下错误消息: Could not fetch URL https://pypi.python.org/simple/rpy2/: There was a problem confirming the ssl certificate: [SSL: TLSV1_ALERT_PROTOCOL_VERSION] tlsv1 alert protoco
我想在我的实验室顶部使用rpy2库。但是今天早上我没能安装好。
这里有几个问题。任何建议都将不胜感激!
尝试1
使用pip install rpy2。结果显示:
Complete output from command python setup.py egg_info:
Error: Tried to guess R's HOME but no command (R) in the PATH.
----------------------------------------
Command "python setup.py egg_info" fai
我已经通过pip install rpy2安装了rpy2。在此之后,在Jupyter笔记本中,导入工作正常: import rpy2
print(rpy2.__version__) 它返回3.1.0。但是,当我键入此import rpy2.robjects as robjects时,我得到以下错误: ValueError: The system "%s" is not supported. 有人知道这个错误是从哪里来的吗?知道如何解决它吗?
为什么我试图在Python中加载Rpy2,解释器会找到模块,但是当我尝试从它导入任何内容时,它会返回一个错误:
例如:
import rpy2 # No errors, although it does not print anything
但
import rpy2.robjects
返回以下错误:
/home/jimmy/.python_easy_install/rpy2-2.3.0beta1-py2.7-linux-x86_64.egg/rpy2/rinterface/_rinterface.so:未定义符号: Rf_translateCha rUTF8
我按照网站上的说明:
我正在尝试安装rpy2,并且我面临着一个常见的问题。不幸的是,我找到的所有解决方案都是针对win7的
我已经安装了Python2.7和R2.15。然后我在终端上写字
easy_install rpy2
或者,或者
pip install rpy2
相同的结果:
Tried to guess R's HOME but no R command in the PATH
我该怎么做?
我想做什么?
在python中,我试图使用R.的VIF包的car函数来计算VIF (方差膨胀因子),在导入car包时,我使用了rpy2的importr函数,如下所示。
from rpy2.robjects.packages import importr
car = importr('car')
,那么发生了什么?
但是,在运行Google代码之后,我得到了以下错误。
PackageNotInstalledError: The R package "car" is not installed.
据我所知,这是说包car没有安装。
,那么,我的问题
在Google中
我试图在python2.7.14上安装rpy2,在MacOSHighSiererVersion10.13.2上安装,但是当我尝试编写命令时
pip install rpy2
我得到以下输出:
Collecting rpy2
Using cached rpy2-2.9.2.tar.gz
Complete output from command python setup.py egg_info:
rpy2 is no longer supporting Python < 3. Consider using an older rpy2 release when using
我正在尝试安装rpy2。我已经安装了R和rpy2。我尝试将rpy2.robjects作为robjects导入。
我得到以下错误:
Traceback (most recent call last):
File "<pyshell#3>", line 1, in <module>
import rpy2.robjects as robjects
File "C:\Python27\lib\site-packages\rpy2\robjects\__init__.py", line 15, in <module>