update to python 3.7 using anaconda(使用 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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 anaconda 更新到 python 3.7
基础教程推荐
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
