如何使用python的开发版本创建conda环境?或者,当我创建一个扩展时,它是否已包含所有必要的扩展名。
conda create -n py36 python=3.6
答案 0 :(得分:4)
conda search python
的最高版本为3.6.5,因此我认为只有conda才能提供稳定版本。
编辑:conda-forge上提供了一些开发版本:
conda search python --channel conda-forge
看到他们
conda create --name dev python=[version here] --channel conda-forge
安装