Equivalent of apt-get install python3.6-dev for conda

独自空忆成欢 提交于 2019-12-06 01:44:32

问题


How can I create a conda environment with the development version of python? Or does it already include all the necessary extension when I create one.

conda create -n py36 python=3.6


回答1:


conda search python has a maximum version of 3.6.5, so I think only stable releases are available through conda.

edit: some dev versions are available on conda-forge:

conda search python --channel conda-forge to see them

conda create --name dev python=[version here] --channel conda-forge to install



来源:https://stackoverflow.com/questions/50067231/equivalent-of-apt-get-install-python3-6-dev-for-conda

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!