如何从 Anaconda 提示符安装 Python 3.9?
How can I install Python 3.9 from the Anaconda prompt?
Python3.9.0rc1今天已经发布,据official website.
有没有办法在 Anaconda 环境中使用它?我试过了
conda create --name python39 python==3.9
但是它说:
ERROR: Could not find a version that satisfies the requirement python==3.9 (from versions: none)
ERROR: No matching distribution found for python==3.9
编辑:关闭为重复项排除了没有答案的问题,并且对建议的重复项的自我接受的答案没有回答问题。它说“改用另一个分销渠道”。
自 2020 年 10 月 9 日起,Python 3.9 可通过 conda
在 conda-forge
频道上下载。请参阅 the Python notes and the conda-forge/python 网站。
(复制我对 OP 的 post 的评论)今天发布了 python 3.9 候选版本,3.9.0 版本是 expected to be released on October 5, 2020。似乎 anaconda 和 conda-forge 频道都没有 python 候选版本。编译的 Python 包(例如 numpy)也需要用 3.9 构建,而且这些似乎也不可用。
如果您查看 https://anaconda.org/conda-forge/python,有几个标签可用,但其中 none 包括 Python 3.9。命令
conda install -c conda-forge/label/dev python
conda install -c conda-forge/label/prerelease python
都为我在 amd64 Linux.
上安装 Python 3.8
anaconda channel也不包括Python3.9。您可以查看“文件”选项卡中的版本下拉列表。在撰写本文时,最新版本是 3.8.5。
最好在安装 Python 3.9:
之前更新 Conda
conda update -n base -c defaults conda
然后安装一个Python3.9环境。这现在有效:
conda create --name python39 python==3.9
Python3.9.0rc1今天已经发布,据official website.
有没有办法在 Anaconda 环境中使用它?我试过了
conda create --name python39 python==3.9
但是它说:
ERROR: Could not find a version that satisfies the requirement python==3.9 (from versions: none) ERROR: No matching distribution found for python==3.9
编辑:关闭为重复项排除了没有答案的问题,并且对建议的重复项的自我接受的答案没有回答问题。它说“改用另一个分销渠道”。
Python 3.9 可通过 conda
在 conda-forge
频道上下载。请参阅 the Python notes and the conda-forge/python 网站。
(复制我对 OP 的 post 的评论)今天发布了 python 3.9 候选版本,3.9.0 版本是 expected to be released on October 5, 2020。似乎 anaconda 和 conda-forge 频道都没有 python 候选版本。编译的 Python 包(例如 numpy)也需要用 3.9 构建,而且这些似乎也不可用。
如果您查看 https://anaconda.org/conda-forge/python,有几个标签可用,但其中 none 包括 Python 3.9。命令
conda install -c conda-forge/label/dev python
conda install -c conda-forge/label/prerelease python
都为我在 amd64 Linux.
上安装 Python 3.8anaconda channel也不包括Python3.9。您可以查看“文件”选项卡中的版本下拉列表。在撰写本文时,最新版本是 3.8.5。
最好在安装 Python 3.9:
之前更新 Condaconda update -n base -c defaults conda
然后安装一个Python3.9环境。这现在有效:
conda create --name python39 python==3.9