使用 anaconda 更新到 python 3.7

2023-01-24Python开发问题
82

本文介绍了使用 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

The End

相关推荐

在xarray中按单个维度的多个坐标分组
groupby multiple coords along a single dimension in xarray(在xarray中按单个维度的多个坐标分组)...
2024-08-22 Python开发问题
15

Pandas中的GROUP BY AND SUM不丢失列
Group by and Sum in Pandas without losing columns(Pandas中的GROUP BY AND SUM不丢失列)...
2024-08-22 Python开发问题
17

pandas 有从特定日期开始的按月分组的方式吗?
Is there a way of group by month in Pandas starting at specific day number?( pandas 有从特定日期开始的按月分组的方式吗?)...
2024-08-22 Python开发问题
10

GROUP BY+新列+基于条件的前一行抓取值
Group by + New Column + Grab value former row based on conditionals(GROUP BY+新列+基于条件的前一行抓取值)...
2024-08-22 Python开发问题
18

PANDA中的Groupby算法和插值算法
Groupby and interpolate in Pandas(PANDA中的Groupby算法和插值算法)...
2024-08-22 Python开发问题
11

PANAS-基于列对行进行分组,并将NaN替换为非空值
Pandas - Group Rows based on a column and replace NaN with non-null values(PANAS-基于列对行进行分组,并将NaN替换为非空值)...
2024-08-22 Python开发问题
10