在 Windows 上将 Anaconda 的根 Python 更新到较新的次要版本没有任何作用

Updating Anaconda#39;s root Python to newer minor version on Windows does nothing(在 Windows 上将 Anaconda 的根 Python 更新到较新的次要版本没有任何作用)
本文介绍了在 Windows 上将 Anaconda 的根 Python 更新到较新的次要版本没有任何作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我在 Windows 上安装了 Anaconda(不是 miniconda)Python 2.7.我想将安装的 Python 版本更新到最新的次要版本(2.7.9),我看到 conda 配置使用的频道中提供了该版本.但是,输入 conda update python 基本上是说:

I have an Anaconda (not miniconda) Python 2.7 install on Windows. I would like to update the version of Python installed to the latest minor version (2.7.9), which I see is available in the channels that conda is configured to use. However, typing conda update python basically says:

# All requested packages already installed.
# packages in environment at C:Anaconda:
#
python                    2.7.5                         2

如何在 Windows 上更新到 Python 的另一个次要版本?我猜由于 conda 是用 Python 编写的,而 Windows 不允许您覆盖或删除打开的文件,这在 Windows 上可能会有点困难......但是有可能吗?

How does one update to another minor version of Python on Windows? I guess that since conda is written in Python and Windows does not let you overwrite or delete open files, that might be slightly difficult to do on Windows... But is it possible?

推荐答案

你说得对,Windows 不会让 conda 在根环境下更新 Python.唯一的选择是使用 conda create 创建一个新环境.否则,现在,您将不得不重新安装 Anaconda 以更新根环境 Python.我们正在研究一种在根环境中更新 Python 的方法,但还没有完成.

You are right that Windows won't let conda update Python in the root environment. The only option is to create a new environment with conda create. Otherwise, for now, you will have to reinstall Anaconda to update the root environment Python. We are working on a way to update Python in the root environment, but it isn't finished yet.

这篇关于在 Windows 上将 Anaconda 的根 Python 更新到较新的次要版本没有任何作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

python arbitrarily incrementing an iterator inside a loop(python在循环内任意递增迭代器)
Joining a set of ordered-integer yielding Python iterators(加入一组产生 Python 迭代器的有序整数)
Iterating over dictionary items(), values(), keys() in Python 3(在 Python 3 中迭代字典 items()、values()、keys())
What is the Perl version of a Python iterator?(Python 迭代器的 Perl 版本是什么?)
How to create a generator/iterator with the Python C API?(如何使用 Python C API 创建生成器/迭代器?)
Python generator behaviour(Python 生成器行为)