使用 anaconda 更新到 python 3.7

update to python 3.7 using anaconda(使用 anaconda 更新到 python 3.7)
本文介绍了使用 anaconda 更新到 python 3.7的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

Python 3.7 alpha 版已经出来了,但是我还没有找到有关如何使用 Anaconda 更新到 python 3.7 的任何帖子 - 也许他们会等待正式发布?有什么建议吗?

Python 3.7 alpha version is out, but I haven't been able to find any post on how to update to python 3.7 using Anaconda - maybe they will wait for the official release? Any suggestions?

推荐答案

Python 3.7 现在可以安装了,但是很多包还没有更新.正如another answer here所指出的,有一个 GitHub 问题跟踪 Anaconda 构建所有更新包的进度.

Python 3.7 is now available to be installed, but many packages have not been updated yet. As noted by another answer here, there is a GitHub issue tracking the progress of Anaconda building all the updated packages.

在有人为 Python 3.7 创建 conda 包之前,您无法安装它.不幸的是,在 Anaconda.org (https://anaconda.org/search?q=%22python%22) 所以我看不到是否有人这样做了.

Until someone creates a conda package for Python 3.7, you can't install it. Unfortunately, something like 3500 packages show up in a search for "python" on Anaconda.org (https://anaconda.org/search?q=%22python%22) so I couldn't see if anyone has done that yet.

您也许可以构建自己的软件包,具体取决于您想要的操作系统.您可以从 conda-forge 用于构建 Python 的配方开始:https://github.com/conda-forge/python-feedstock/

You might be able to build your own package, depending on what OS you want it for. You can start with the recipe that conda-forge uses to build Python: https://github.com/conda-forge/python-feedstock/

在过去,我认为 Continuum 通常会等到稳定版本推出新 Python 的软件包,但我不在那里工作,所以我不知道他们的实际政策是什么.

In the past, I think Continuum have generally waited until a stable release to push out packages for new Pythons, but I don't work there, so I don't know what their actual policy is.

这篇关于使用 anaconda 更新到 python 3.7的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

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

相关文档推荐

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 生成器行为)