我是 python 和 anaconda 的初学者。当我输入“ versions % conda create --name envname python=3.5 ”时,我收到一条错误,告诉我版本 3.5 不可用:
versions % conda create --name envname python=3.5
Channels:
- defaults
Platform: osx-arm64
Collecting package metadata (repodata.json): done
Solving environment: failed
PackagesNotFoundError: The following packages are not available from current channels:
- python=3.5\*
Current channels:
- defaults
To search for alternate channels that may provide the conda package you're
looking for, navigate to
https://anaconda.org
and use the search bar at the top of the page. '. how to get version 3.5 in my conda environment?
感谢您的帮助
在运行
conda create
命令之前,您是否尝试过安装该版本的 python?
我找到了这个 stackoverflow 帖子:anaconda/conda - 安装特定的软件包版本,看起来您可能需要为该特定的 python 版本运行
conda install
命令。
尝试跑步
conda install python=3.5
。运行该命令后尝试运行 conda create --name envname python=3.5
。
这个 stackoverflow 帖子:如何使用 Anaconda 安装特定版本的 Python? 也可能是一个有用的参考。
祝你好运。