我尝试安装rpy2,以便可以使用.rda
处理R文件(conda install -c r rpy2
),这完全破坏了我的环境。
例如:
1)尝试导入熊猫时,出现以下错误:AttributeError: module 'pandas' has no attribute 'core'
2)尝试导入 matplotlib 时,出现以下错误:AttributeError: module 'matplotlib' has no attribute 'artist'
在安装此软件包之前,我没有遇到这些问题。有没有办法撤消我刚刚做的事情-好像我从来没有首先安装它一样?
答案 0 :(得分:2)
您可以“回滚”到以前的版本。首先,运行:
conda list --revisions
您将获得一个修订列表及其修订号。然后,查看倒数第二个修订并记下其编号。要恢复到该修订版,请运行:
conda install --revision N
其中N
是修订号。