当前位置:首页 > 编程笔记 > 正文
已解决

为什么 conda 不能升级 python 到 3.12

来自网友在路上 188888提问 提问时间:2023-11-08 02:53:38阅读次数: 88

最佳答案 问答题库888位专家为你答疑解惑

为什么 conda 不能升级 python 到 3.12

2023-11-05 23:33:29
ChrisZZ

1. 目的

弄清楚为什么执行了如下升级命令后, python 版本还是 3.11?

conda update conda 
conda update python

2. 原因

因为 conda forge 没有完成 migration

Migration is the process on Conda Forge by which packages get rebuilt to support new global versions, such as Python 3.12 or R 4.3. Conda Forge provides a dashboard to track the status of migrations, such as Python 3.12.

迁移(migration) 指的是 conda 仓库中的软件包重新编译以支持新的全局版本的过程, 例如 Python 3.12 或 R 4.3。

对于 Python 3.12 的 migration 工作进展, 可以在网页里查看:
https://conda-forge.org/status/#python312

3. 强行安装 Python 3.12

创建新的 conda 环境即可。新环境不限制 Python 版本。

mamba create -n py312 -c conda-forge python=3.12

4. References

https://stackoverflow.com/questions/77277139/install-python-3-12-using-mamba-on-mac

查看全文

99%的人还看了

猜你感兴趣

版权申明

本文"为什么 conda 不能升级 python 到 3.12":http://eshow365.cn/6-34981-0.html 内容来自互联网,请自行判断内容的正确性。如有侵权请联系我们,立即删除!