如果我这样做了
conda info pandas
我可以看到所有可用的包.
I can see all of the packages available.
我今天早上将我的 pandas 更新到了最新版本,但我现在需要恢复到以前的版本.我试过了
I updated my pandas to the latest this morning, but I need to revert to a prior version now. I tried
conda update pandas 0.13.1
但这没有用.如何指定要使用的版本?
but that didn't work. How do I specify which version to use?
我不得不改用 install 函数:
I had to use the install function instead:
conda install pandas=0.13.1
这篇关于如何在 Anaconda 中恢复到以前的包?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
使用 python 解析非常大的 xml 文件时出现问题Troubles while parsing with python very large xml file(使用 python 解析非常大的 xml 文件时出现问题)
使用 Python 2 在 XML 中按属性查找所有节点Find all nodes by attribute in XML using Python 2(使用 Python 2 在 XML 中按属性查找所有节点)
Python - 如何解析 xml 响应并将元素值存储在变量中Python - How to parse xml response and store a elements value in a variable?(Python - 如何解析 xml 响应并将元素值存储在变量中?)
如何在 Python 中获取 XML 标记值How to get XML tag value in Python(如何在 Python 中获取 XML 标记值)
如何使用 ElementTree 正确解析 utf-8 xml?How to correctly parse utf-8 xml with ElementTree?(如何使用 ElementTree 正确解析 utf-8 xml?)
将 XML 从 URL 解析为 python 对象Parse XML from URL into python object(将 XML 从 URL 解析为 python 对象)